@aldiokta/protocgen 1.1.26 → 1.1.28

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.
Files changed (31) hide show
  1. package/package.json +1 -1
  2. package/prisca/v1/bidding/bidding_grpc_pb.js +55 -0
  3. package/prisca/v1/bidding/bidding_pb.js +1042 -63
  4. package/prisca/v1/core/access_manager/access_manager_grpc_pb.js +33 -0
  5. package/prisca/v1/core/access_manager/access_manager_pb.js +385 -0
  6. package/prisca/v1/core/auth/auth_grpc_pb.js +103 -3
  7. package/prisca/v1/core/auth/auth_pb.js +2519 -1181
  8. package/prisca/v1/core/file_upload/file_upload_pb.js +93 -3
  9. package/prisca/v1/core/item_transaction/item_transaction_pb.js +183 -33
  10. package/prisca/v1/core/line_of_activity/line_of_activity_pb.js +438 -46
  11. package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +31 -1
  12. package/prisca/v1/core/location/location_pb.js +446 -57
  13. package/prisca/v1/core/messaging/notification_grpc_pb.js +188 -0
  14. package/prisca/v1/core/messaging/notification_pb.js +2780 -0
  15. package/prisca/v1/core/price_condition/price_condition_pb.js +122 -2
  16. package/prisca/v1/core/transaction_builder/transaction_builder_grpc_pb.js +234 -168
  17. package/prisca/v1/core/transaction_builder/transaction_builder_pb.js +1987 -1775
  18. package/prisca/v1/delivery_order/delivery_order_pb.js +130 -70
  19. package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +228 -1
  20. package/prisca/v1/good_receipt/good_receipt_pb.js +4779 -0
  21. package/prisca/v1/invoice/invoice_grpc_pb.js +174 -0
  22. package/prisca/v1/invoice/invoice_pb.js +4398 -0
  23. package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +11 -0
  24. package/prisca/v1/purchase_order/purchase_order_pb.js +142 -22
  25. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +105 -75
  26. package/prisca/v1/purchasing_organization/purchasing_organization_pb.js +55 -177
  27. package/prisca/v1/quotation/quotation_pb.js +236 -26
  28. package/prisca/v1/request_for_quotation/request_for_quotation_grpc_pb.js +33 -0
  29. package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +413 -28
  30. package/prisca/v1/vendor_domain/vendor_domain_grpc_pb.js +55 -0
  31. package/prisca/v1/vendor_domain/vendor_domain_pb.js +1076 -317
@@ -375,7 +375,8 @@ createdAt: jspb.Message.getFieldWithDefault(msg, 7, ""),
375
375
  updatedAt: jspb.Message.getFieldWithDefault(msg, 8, ""),
376
376
  documentType: jspb.Message.getFieldWithDefault(msg, 9, ""),
377
377
  employees: (f = msg.getEmployees()) && prisca_v1_core_employee_employee_pb.Employee.toObject(includeInstance, f),
378
- approvalNote: jspb.Message.getFieldWithDefault(msg, 11, "")
378
+ approvalNote: jspb.Message.getFieldWithDefault(msg, 11, ""),
379
+ companiesReferencesId: jspb.Message.getFieldWithDefault(msg, 12, "")
379
380
  };
380
381
 
381
382
  if (includeInstance) {
@@ -457,6 +458,10 @@ proto.LineOfApproval.deserializeBinaryFromReader = function(msg, reader) {
457
458
  var value = /** @type {string} */ (reader.readString());
458
459
  msg.setApprovalNote(value);
459
460
  break;
461
+ case 12:
462
+ var value = /** @type {string} */ (reader.readString());
463
+ msg.setCompaniesReferencesId(value);
464
+ break;
460
465
  default:
461
466
  reader.skipField();
462
467
  break;
@@ -564,6 +569,13 @@ proto.LineOfApproval.serializeBinaryToWriter = function(message, writer) {
564
569
  f
565
570
  );
566
571
  }
572
+ f = message.getCompaniesReferencesId();
573
+ if (f.length > 0) {
574
+ writer.writeString(
575
+ 12,
576
+ f
577
+ );
578
+ }
567
579
  };
568
580
 
569
581
 
@@ -784,6 +796,24 @@ proto.LineOfApproval.prototype.setApprovalNote = function(value) {
784
796
  };
785
797
 
786
798
 
799
+ /**
800
+ * optional string companies_references_id = 12;
801
+ * @return {string}
802
+ */
803
+ proto.LineOfApproval.prototype.getCompaniesReferencesId = function() {
804
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
805
+ };
806
+
807
+
808
+ /**
809
+ * @param {string} value
810
+ * @return {!proto.LineOfApproval} returns this
811
+ */
812
+ proto.LineOfApproval.prototype.setCompaniesReferencesId = function(value) {
813
+ return jspb.Message.setProto3StringField(this, 12, value);
814
+ };
815
+
816
+
787
817
 
788
818
 
789
819