@aldiokta/protocgen 1.1.27 → 1.1.29

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 (26) hide show
  1. package/package.json +1 -1
  2. package/prisca/v1/bidding/bidding_grpc_pb.js +33 -0
  3. package/prisca/v1/bidding/bidding_pb.js +598 -37
  4. package/prisca/v1/core/auth/auth_grpc_pb.js +1 -0
  5. package/prisca/v1/core/auth/auth_pb.js +7 -217
  6. package/prisca/v1/core/file_upload/file_upload_pb.js +93 -3
  7. package/prisca/v1/core/item_transaction/item_transaction_pb.js +0 -30
  8. package/prisca/v1/core/line_of_activity/line_of_activity_pb.js +438 -46
  9. package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +31 -1
  10. package/prisca/v1/core/location/location_pb.js +446 -57
  11. package/prisca/v1/core/price_condition/price_condition_pb.js +62 -2
  12. package/prisca/v1/core/transaction_builder/transaction_builder_grpc_pb.js +234 -168
  13. package/prisca/v1/core/transaction_builder/transaction_builder_pb.js +1959 -1777
  14. package/prisca/v1/delivery_order/delivery_order_pb.js +21 -21
  15. package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +1 -0
  16. package/prisca/v1/good_receipt/good_receipt_pb.js +277 -23
  17. package/prisca/v1/invoice/invoice_grpc_pb.js +174 -0
  18. package/prisca/v1/invoice/invoice_pb.js +4398 -0
  19. package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +11 -0
  20. package/prisca/v1/purchase_order/purchase_order_pb.js +21 -21
  21. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +74 -74
  22. package/prisca/v1/purchasing_organization/purchasing_organization_pb.js +55 -177
  23. package/prisca/v1/quotation/quotation_pb.js +118 -28
  24. package/prisca/v1/request_for_quotation/request_for_quotation_grpc_pb.js +33 -0
  25. package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +413 -28
  26. package/prisca/v1/vendor_domain/vendor_domain_pb.js +375 -225
@@ -338,7 +338,8 @@ referencesId: jspb.Message.getFieldWithDefault(msg, 12, ""),
338
338
  companies: (f = msg.getCompanies()) && prisca_v1_core_company_company_pb.Company.toObject(includeInstance, f),
339
339
  createdByEmployee: (f = msg.getCreatedByEmployee()) && prisca_v1_core_employee_employee_pb.Employee.toObject(includeInstance, f),
340
340
  updatedByEmployee: (f = msg.getUpdatedByEmployee()) && prisca_v1_core_employee_employee_pb.Employee.toObject(includeInstance, f),
341
- operator: jspb.Message.getFieldWithDefault(msg, 16, "")
341
+ operator: jspb.Message.getFieldWithDefault(msg, 16, ""),
342
+ code: jspb.Message.getFieldWithDefault(msg, 17, "")
342
343
  };
343
344
 
344
345
  if (includeInstance) {
@@ -442,6 +443,10 @@ proto.PriceCondition.deserializeBinaryFromReader = function(msg, reader) {
442
443
  var value = /** @type {string} */ (reader.readString());
443
444
  msg.setOperator(value);
444
445
  break;
446
+ case 17:
447
+ var value = /** @type {string} */ (reader.readString());
448
+ msg.setCode(value);
449
+ break;
445
450
  default:
446
451
  reader.skipField();
447
452
  break;
@@ -586,6 +591,13 @@ proto.PriceCondition.serializeBinaryToWriter = function(message, writer) {
586
591
  f
587
592
  );
588
593
  }
594
+ f = message.getCode();
595
+ if (f.length > 0) {
596
+ writer.writeString(
597
+ 17,
598
+ f
599
+ );
600
+ }
589
601
  };
590
602
 
591
603
 
@@ -934,6 +946,24 @@ proto.PriceCondition.prototype.setOperator = function(value) {
934
946
  };
935
947
 
936
948
 
949
+ /**
950
+ * optional string code = 17;
951
+ * @return {string}
952
+ */
953
+ proto.PriceCondition.prototype.getCode = function() {
954
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
955
+ };
956
+
957
+
958
+ /**
959
+ * @param {string} value
960
+ * @return {!proto.PriceCondition} returns this
961
+ */
962
+ proto.PriceCondition.prototype.setCode = function(value) {
963
+ return jspb.Message.setProto3StringField(this, 17, value);
964
+ };
965
+
966
+
937
967
 
938
968
 
939
969
 
@@ -973,7 +1003,8 @@ currency: jspb.Message.getFieldWithDefault(msg, 5, ""),
973
1003
  divide: jspb.Message.getFieldWithDefault(msg, 6, 0),
974
1004
  unitOfMeasure: jspb.Message.getFieldWithDefault(msg, 7, ""),
975
1005
  customTransaction: jspb.Message.getFieldWithDefault(msg, 8, ""),
976
- operator: jspb.Message.getFieldWithDefault(msg, 9, "")
1006
+ operator: jspb.Message.getFieldWithDefault(msg, 9, ""),
1007
+ code: jspb.Message.getFieldWithDefault(msg, 10, "")
977
1008
  };
978
1009
 
979
1010
  if (includeInstance) {
@@ -1042,6 +1073,10 @@ proto.BasePriceCondition.deserializeBinaryFromReader = function(msg, reader) {
1042
1073
  var value = /** @type {string} */ (reader.readString());
1043
1074
  msg.setOperator(value);
1044
1075
  break;
1076
+ case 10:
1077
+ var value = /** @type {string} */ (reader.readString());
1078
+ msg.setCode(value);
1079
+ break;
1045
1080
  default:
1046
1081
  reader.skipField();
1047
1082
  break;
@@ -1127,6 +1162,13 @@ proto.BasePriceCondition.serializeBinaryToWriter = function(message, writer) {
1127
1162
  f
1128
1163
  );
1129
1164
  }
1165
+ f = message.getCode();
1166
+ if (f.length > 0) {
1167
+ writer.writeString(
1168
+ 10,
1169
+ f
1170
+ );
1171
+ }
1130
1172
  };
1131
1173
 
1132
1174
 
@@ -1274,6 +1316,24 @@ proto.BasePriceCondition.prototype.setOperator = function(value) {
1274
1316
  };
1275
1317
 
1276
1318
 
1319
+ /**
1320
+ * optional string code = 10;
1321
+ * @return {string}
1322
+ */
1323
+ proto.BasePriceCondition.prototype.getCode = function() {
1324
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
1325
+ };
1326
+
1327
+
1328
+ /**
1329
+ * @param {string} value
1330
+ * @return {!proto.BasePriceCondition} returns this
1331
+ */
1332
+ proto.BasePriceCondition.prototype.setCode = function(value) {
1333
+ return jspb.Message.setProto3StringField(this, 10, value);
1334
+ };
1335
+
1336
+
1277
1337
 
1278
1338
 
1279
1339