@aldiokta/protocgen 1.1.20 → 1.1.22

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 (49) hide show
  1. package/package.json +1 -1
  2. package/prisca/v1/bidding/bidding_grpc_pb.js +97 -8
  3. package/prisca/v1/bidding/bidding_pb.js +1506 -178
  4. package/prisca/v1/core/company/company_pb.js +77 -25
  5. package/prisca/v1/core/employee/employee_pb.js +74 -22
  6. package/prisca/v1/core/file_upload/file_upload_pb.js +183 -3
  7. package/prisca/v1/core/incoterm/incoterm_grpc_pb.js +33 -0
  8. package/prisca/v1/core/incoterm/incoterm_pb.js +407 -0
  9. package/prisca/v1/core/item_transaction/item_transaction_pb.js +304 -4
  10. package/prisca/v1/core/job_grade/job_grade_pb.js +80 -28
  11. package/prisca/v1/core/job_position/job_position_pb.js +74 -22
  12. package/prisca/v1/core/job_title/job_title_pb.js +80 -28
  13. package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +61 -1
  14. package/prisca/v1/core/material/material_pb.js +74 -22
  15. package/prisca/v1/core/material_group/material_group_pb.js +77 -25
  16. package/prisca/v1/core/material_type/material_type_grpc_pb.js +33 -0
  17. package/prisca/v1/core/material_type/material_type_pb.js +407 -0
  18. package/prisca/v1/core/number_range/number_range_pb.js +74 -22
  19. package/prisca/v1/core/organization/organization_pb.js +80 -28
  20. package/prisca/v1/core/organization_level/organization_level_pb.js +80 -28
  21. package/prisca/v1/core/price_condition/price_condition_grpc_pb.js +33 -0
  22. package/prisca/v1/core/price_condition/price_condition_pb.js +407 -0
  23. package/prisca/v1/core/tax_code/tax_code_pb.js +152 -2
  24. package/prisca/v1/core/term_of_payment/term_of_payment_grpc_pb.js +33 -0
  25. package/prisca/v1/core/term_of_payment/term_of_payment_pb.js +407 -0
  26. package/prisca/v1/core/users/users_grpc_pb.js +33 -0
  27. package/prisca/v1/core/users/users_pb.js +407 -0
  28. package/prisca/v1/core/work_location/work_location_pb.js +74 -22
  29. package/prisca/v1/core/workflow/workflow_pb.js +74 -22
  30. package/prisca/v1/delivery_order/delivery_order_grpc_pb.js +229 -0
  31. package/prisca/v1/delivery_order/delivery_order_pb.js +4661 -0
  32. package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +1 -0
  33. package/prisca/v1/good_receipt/good_receipt_pb.js +35 -0
  34. package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +1 -1
  35. package/prisca/v1/purchase_order/purchase_order_pb.js +464 -404
  36. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +11 -0
  37. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +13 -13
  38. package/prisca/v1/purchasing_group/purchasing_group_pb.js +80 -28
  39. package/prisca/v1/purchasing_organization/purchasing_organization_grpc_pb.js +33 -0
  40. package/prisca/v1/purchasing_organization/purchasing_organization_pb.js +407 -0
  41. package/prisca/v1/purchasing_organization_assignment/purchasing_organization_assignment_grpc_pb.js +33 -0
  42. package/prisca/v1/purchasing_organization_assignment/purchasing_organization_assignment_pb.js +407 -0
  43. package/prisca/v1/quotation/quotation_grpc_pb.js +14 -3
  44. package/prisca/v1/quotation/quotation_pb.js +479 -2
  45. package/prisca/v1/request_for_quotation/request_for_quotation_grpc_pb.js +1 -0
  46. package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +262 -4
  47. package/prisca/v1/valuation/valuation_grpc_pb.js +365 -0
  48. package/prisca/v1/valuation/valuation_pb.js +7729 -0
  49. package/prisca/v1/vendor_domain/vendor_domain_pb.js +31 -1
@@ -586,7 +586,8 @@ taxInformationList: jspb.Message.toObjectList(msg.getTaxInformationList(),
586
586
  fileIds: jspb.Message.getFieldWithDefault(msg, 29, ""),
587
587
  filesList: jspb.Message.toObjectList(msg.getFilesList(),
588
588
  prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq.toObject, includeInstance),
589
- vendorDescription: jspb.Message.getFieldWithDefault(msg, 31, "")
589
+ vendorDescription: jspb.Message.getFieldWithDefault(msg, 31, ""),
590
+ isSendToVendor: jspb.Message.getBooleanFieldWithDefault(msg, 32, false)
590
591
  };
591
592
 
592
593
  if (includeInstance) {
@@ -753,6 +754,10 @@ proto.Vendor.deserializeBinaryFromReader = function(msg, reader) {
753
754
  var value = /** @type {string} */ (reader.readString());
754
755
  msg.setVendorDescription(value);
755
756
  break;
757
+ case 32:
758
+ var value = /** @type {boolean} */ (reader.readBool());
759
+ msg.setIsSendToVendor(value);
760
+ break;
756
761
  default:
757
762
  reader.skipField();
758
763
  break;
@@ -1005,6 +1010,13 @@ proto.Vendor.serializeBinaryToWriter = function(message, writer) {
1005
1010
  f
1006
1011
  );
1007
1012
  }
1013
+ f = message.getIsSendToVendor();
1014
+ if (f) {
1015
+ writer.writeBool(
1016
+ 32,
1017
+ f
1018
+ );
1019
+ }
1008
1020
  };
1009
1021
 
1010
1022
 
@@ -1686,6 +1698,24 @@ proto.Vendor.prototype.setVendorDescription = function(value) {
1686
1698
  };
1687
1699
 
1688
1700
 
1701
+ /**
1702
+ * optional bool is_send_to_vendor = 32;
1703
+ * @return {boolean}
1704
+ */
1705
+ proto.Vendor.prototype.getIsSendToVendor = function() {
1706
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 32, false));
1707
+ };
1708
+
1709
+
1710
+ /**
1711
+ * @param {boolean} value
1712
+ * @return {!proto.Vendor} returns this
1713
+ */
1714
+ proto.Vendor.prototype.setIsSendToVendor = function(value) {
1715
+ return jspb.Message.setProto3BooleanField(this, 32, value);
1716
+ };
1717
+
1718
+
1689
1719
 
1690
1720
 
1691
1721