@aldiokta/protocgen 1.1.29 → 1.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisca/v1/bidding/bidding_grpc_pb.js +1 -0
- package/prisca/v1/bidding/bidding_pb.js +206 -3
- package/prisca/v1/core/item_transaction/item_transaction_pb.js +256 -16
- package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +61 -1
- package/prisca/v1/core/messaging/notification_grpc_pb.js +22 -0
- package/prisca/v1/core/messaging/notification_pb.js +425 -42
- package/prisca/v1/core/unit_of_measurement/unit_of_measurement_pb.js +31 -1
- package/prisca/v1/delivery_order/delivery_order_pb.js +20 -1140
- package/prisca/v1/good_receipt/good_receipt_pb.js +25 -1235
- package/prisca/v1/invoice/invoice_pb.js +1588 -1562
- package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +1 -0
- package/prisca/v1/purchase_order/purchase_order_pb.js +4156 -21
- package/prisca/v1/quotation/quotation_grpc_pb.js +33 -0
- package/prisca/v1/quotation/quotation_pb.js +381 -0
- package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +31 -1
|
@@ -328,7 +328,8 @@ technicalDescription: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
|
328
328
|
isActive: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
|
|
329
329
|
referencesId: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
330
330
|
createdAt: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
331
|
-
updatedAt: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
331
|
+
updatedAt: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
332
|
+
companiesReferencesId: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
332
333
|
};
|
|
333
334
|
|
|
334
335
|
if (includeInstance) {
|
|
@@ -405,6 +406,10 @@ proto.UnitOfMeasure.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
405
406
|
var value = /** @type {string} */ (reader.readString());
|
|
406
407
|
msg.setUpdatedAt(value);
|
|
407
408
|
break;
|
|
409
|
+
case 11:
|
|
410
|
+
var value = /** @type {string} */ (reader.readString());
|
|
411
|
+
msg.setCompaniesReferencesId(value);
|
|
412
|
+
break;
|
|
408
413
|
default:
|
|
409
414
|
reader.skipField();
|
|
410
415
|
break;
|
|
@@ -504,6 +509,13 @@ proto.UnitOfMeasure.serializeBinaryToWriter = function(message, writer) {
|
|
|
504
509
|
f
|
|
505
510
|
);
|
|
506
511
|
}
|
|
512
|
+
f = message.getCompaniesReferencesId();
|
|
513
|
+
if (f.length > 0) {
|
|
514
|
+
writer.writeString(
|
|
515
|
+
11,
|
|
516
|
+
f
|
|
517
|
+
);
|
|
518
|
+
}
|
|
507
519
|
};
|
|
508
520
|
|
|
509
521
|
|
|
@@ -687,6 +699,24 @@ proto.UnitOfMeasure.prototype.setUpdatedAt = function(value) {
|
|
|
687
699
|
};
|
|
688
700
|
|
|
689
701
|
|
|
702
|
+
/**
|
|
703
|
+
* optional string companies_references_id = 11;
|
|
704
|
+
* @return {string}
|
|
705
|
+
*/
|
|
706
|
+
proto.UnitOfMeasure.prototype.getCompaniesReferencesId = function() {
|
|
707
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
708
|
+
};
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
/**
|
|
712
|
+
* @param {string} value
|
|
713
|
+
* @return {!proto.UnitOfMeasure} returns this
|
|
714
|
+
*/
|
|
715
|
+
proto.UnitOfMeasure.prototype.setCompaniesReferencesId = function(value) {
|
|
716
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
717
|
+
};
|
|
718
|
+
|
|
719
|
+
|
|
690
720
|
|
|
691
721
|
|
|
692
722
|
|