@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
@@ -583,7 +583,7 @@ if (goog.DEBUG && !COMPILED) {
583
583
  * @private {!Array<number>}
584
584
  * @const
585
585
  */
586
- proto.Vendor.repeatedFields_ = [24,25,26,27,28,30];
586
+ proto.Vendor.repeatedFields_ = [26,27,28,29,30,32];
587
587
 
588
588
 
589
589
 
@@ -630,15 +630,17 @@ createdAt: jspb.Message.getFieldWithDefault(msg, 11, ""),
630
630
  updatedAt: jspb.Message.getFieldWithDefault(msg, 12, ""),
631
631
  street: jspb.Message.getFieldWithDefault(msg, 13, ""),
632
632
  houseNumber: jspb.Message.getFieldWithDefault(msg, 14, ""),
633
- city: jspb.Message.getFieldWithDefault(msg, 15, ""),
634
- postalCode: jspb.Message.getFieldWithDefault(msg, 16, ""),
635
- country: jspb.Message.getFieldWithDefault(msg, 17, ""),
636
- region: jspb.Message.getFieldWithDefault(msg, 18, ""),
637
- language: jspb.Message.getFieldWithDefault(msg, 19, ""),
638
- industry: jspb.Message.getFieldWithDefault(msg, 20, ""),
639
- businessPartnerRole: jspb.Message.getFieldWithDefault(msg, 21, ""),
640
- validFrom: jspb.Message.getFieldWithDefault(msg, 22, ""),
641
- validTo: jspb.Message.getFieldWithDefault(msg, 23, ""),
633
+ postalCode: jspb.Message.getFieldWithDefault(msg, 15, ""),
634
+ village: jspb.Message.getFieldWithDefault(msg, 16, ""),
635
+ district: jspb.Message.getFieldWithDefault(msg, 17, ""),
636
+ city: jspb.Message.getFieldWithDefault(msg, 18, ""),
637
+ province: jspb.Message.getFieldWithDefault(msg, 19, ""),
638
+ country: jspb.Message.getFieldWithDefault(msg, 20, ""),
639
+ language: jspb.Message.getFieldWithDefault(msg, 21, ""),
640
+ industry: jspb.Message.getFieldWithDefault(msg, 22, ""),
641
+ businessPartnerRole: jspb.Message.getFieldWithDefault(msg, 23, ""),
642
+ validFrom: jspb.Message.getFieldWithDefault(msg, 24, ""),
643
+ validTo: jspb.Message.getFieldWithDefault(msg, 25, ""),
642
644
  bankAccountsList: jspb.Message.toObjectList(msg.getBankAccountsList(),
643
645
  proto.BankAccount.toObject, includeInstance),
644
646
  contactsList: jspb.Message.toObjectList(msg.getContactsList(),
@@ -649,11 +651,12 @@ relationshipsList: jspb.Message.toObjectList(msg.getRelationshipsList(),
649
651
  proto.Relationship.toObject, includeInstance),
650
652
  taxInformationList: jspb.Message.toObjectList(msg.getTaxInformationList(),
651
653
  proto.TaxInformation.toObject, includeInstance),
652
- fileIds: jspb.Message.getFieldWithDefault(msg, 29, ""),
654
+ fileIds: jspb.Message.getFieldWithDefault(msg, 31, ""),
653
655
  filesList: jspb.Message.toObjectList(msg.getFilesList(),
654
656
  prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq.toObject, includeInstance),
655
- vendorDescription: jspb.Message.getFieldWithDefault(msg, 31, ""),
656
- isSendToVendor: jspb.Message.getBooleanFieldWithDefault(msg, 32, false)
657
+ vendorDescription: jspb.Message.getFieldWithDefault(msg, 33, ""),
658
+ isSendToVendor: jspb.Message.getBooleanFieldWithDefault(msg, 34, false),
659
+ lineOfApprovalReferencesId: jspb.Message.getFieldWithDefault(msg, 35, "")
657
660
  };
658
661
 
659
662
  if (includeInstance) {
@@ -748,82 +751,94 @@ proto.Vendor.deserializeBinaryFromReader = function(msg, reader) {
748
751
  break;
749
752
  case 15:
750
753
  var value = /** @type {string} */ (reader.readString());
751
- msg.setCity(value);
754
+ msg.setPostalCode(value);
752
755
  break;
753
756
  case 16:
754
757
  var value = /** @type {string} */ (reader.readString());
755
- msg.setPostalCode(value);
758
+ msg.setVillage(value);
756
759
  break;
757
760
  case 17:
758
761
  var value = /** @type {string} */ (reader.readString());
759
- msg.setCountry(value);
762
+ msg.setDistrict(value);
760
763
  break;
761
764
  case 18:
762
765
  var value = /** @type {string} */ (reader.readString());
763
- msg.setRegion(value);
766
+ msg.setCity(value);
764
767
  break;
765
768
  case 19:
766
769
  var value = /** @type {string} */ (reader.readString());
767
- msg.setLanguage(value);
770
+ msg.setProvince(value);
768
771
  break;
769
772
  case 20:
770
773
  var value = /** @type {string} */ (reader.readString());
771
- msg.setIndustry(value);
774
+ msg.setCountry(value);
772
775
  break;
773
776
  case 21:
774
777
  var value = /** @type {string} */ (reader.readString());
775
- msg.setBusinessPartnerRole(value);
778
+ msg.setLanguage(value);
776
779
  break;
777
780
  case 22:
778
781
  var value = /** @type {string} */ (reader.readString());
779
- msg.setValidFrom(value);
782
+ msg.setIndustry(value);
780
783
  break;
781
784
  case 23:
782
785
  var value = /** @type {string} */ (reader.readString());
783
- msg.setValidTo(value);
786
+ msg.setBusinessPartnerRole(value);
784
787
  break;
785
788
  case 24:
789
+ var value = /** @type {string} */ (reader.readString());
790
+ msg.setValidFrom(value);
791
+ break;
792
+ case 25:
793
+ var value = /** @type {string} */ (reader.readString());
794
+ msg.setValidTo(value);
795
+ break;
796
+ case 26:
786
797
  var value = new proto.BankAccount;
787
798
  reader.readMessage(value,proto.BankAccount.deserializeBinaryFromReader);
788
799
  msg.addBankAccounts(value);
789
800
  break;
790
- case 25:
801
+ case 27:
791
802
  var value = new proto.Contact;
792
803
  reader.readMessage(value,proto.Contact.deserializeBinaryFromReader);
793
804
  msg.addContacts(value);
794
805
  break;
795
- case 26:
806
+ case 28:
796
807
  var value = new proto.Communication;
797
808
  reader.readMessage(value,proto.Communication.deserializeBinaryFromReader);
798
809
  msg.addCommunications(value);
799
810
  break;
800
- case 27:
811
+ case 29:
801
812
  var value = new proto.Relationship;
802
813
  reader.readMessage(value,proto.Relationship.deserializeBinaryFromReader);
803
814
  msg.addRelationships(value);
804
815
  break;
805
- case 28:
816
+ case 30:
806
817
  var value = new proto.TaxInformation;
807
818
  reader.readMessage(value,proto.TaxInformation.deserializeBinaryFromReader);
808
819
  msg.addTaxInformation(value);
809
820
  break;
810
- case 29:
821
+ case 31:
811
822
  var value = /** @type {string} */ (reader.readString());
812
823
  msg.setFileIds(value);
813
824
  break;
814
- case 30:
825
+ case 32:
815
826
  var value = new prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq;
816
827
  reader.readMessage(value,prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq.deserializeBinaryFromReader);
817
828
  msg.addFiles(value);
818
829
  break;
819
- case 31:
830
+ case 33:
820
831
  var value = /** @type {string} */ (reader.readString());
821
832
  msg.setVendorDescription(value);
822
833
  break;
823
- case 32:
834
+ case 34:
824
835
  var value = /** @type {boolean} */ (reader.readBool());
825
836
  msg.setIsSendToVendor(value);
826
837
  break;
838
+ case 35:
839
+ var value = /** @type {string} */ (reader.readString());
840
+ msg.setLineOfApprovalReferencesId(value);
841
+ break;
827
842
  default:
828
843
  reader.skipField();
829
844
  break;
@@ -951,73 +966,87 @@ proto.Vendor.serializeBinaryToWriter = function(message, writer) {
951
966
  f
952
967
  );
953
968
  }
954
- f = message.getCity();
969
+ f = message.getPostalCode();
955
970
  if (f.length > 0) {
956
971
  writer.writeString(
957
972
  15,
958
973
  f
959
974
  );
960
975
  }
961
- f = message.getPostalCode();
976
+ f = message.getVillage();
962
977
  if (f.length > 0) {
963
978
  writer.writeString(
964
979
  16,
965
980
  f
966
981
  );
967
982
  }
968
- f = message.getCountry();
983
+ f = message.getDistrict();
969
984
  if (f.length > 0) {
970
985
  writer.writeString(
971
986
  17,
972
987
  f
973
988
  );
974
989
  }
975
- f = message.getRegion();
990
+ f = message.getCity();
976
991
  if (f.length > 0) {
977
992
  writer.writeString(
978
993
  18,
979
994
  f
980
995
  );
981
996
  }
982
- f = message.getLanguage();
997
+ f = message.getProvince();
983
998
  if (f.length > 0) {
984
999
  writer.writeString(
985
1000
  19,
986
1001
  f
987
1002
  );
988
1003
  }
989
- f = message.getIndustry();
1004
+ f = message.getCountry();
990
1005
  if (f.length > 0) {
991
1006
  writer.writeString(
992
1007
  20,
993
1008
  f
994
1009
  );
995
1010
  }
996
- f = message.getBusinessPartnerRole();
1011
+ f = message.getLanguage();
997
1012
  if (f.length > 0) {
998
1013
  writer.writeString(
999
1014
  21,
1000
1015
  f
1001
1016
  );
1002
1017
  }
1003
- f = message.getValidFrom();
1018
+ f = message.getIndustry();
1004
1019
  if (f.length > 0) {
1005
1020
  writer.writeString(
1006
1021
  22,
1007
1022
  f
1008
1023
  );
1009
1024
  }
1010
- f = message.getValidTo();
1025
+ f = message.getBusinessPartnerRole();
1011
1026
  if (f.length > 0) {
1012
1027
  writer.writeString(
1013
1028
  23,
1014
1029
  f
1015
1030
  );
1016
1031
  }
1032
+ f = message.getValidFrom();
1033
+ if (f.length > 0) {
1034
+ writer.writeString(
1035
+ 24,
1036
+ f
1037
+ );
1038
+ }
1039
+ f = message.getValidTo();
1040
+ if (f.length > 0) {
1041
+ writer.writeString(
1042
+ 25,
1043
+ f
1044
+ );
1045
+ }
1017
1046
  f = message.getBankAccountsList();
1018
1047
  if (f.length > 0) {
1019
1048
  writer.writeRepeatedMessage(
1020
- 24,
1049
+ 26,
1021
1050
  f,
1022
1051
  proto.BankAccount.serializeBinaryToWriter
1023
1052
  );
@@ -1025,7 +1054,7 @@ proto.Vendor.serializeBinaryToWriter = function(message, writer) {
1025
1054
  f = message.getContactsList();
1026
1055
  if (f.length > 0) {
1027
1056
  writer.writeRepeatedMessage(
1028
- 25,
1057
+ 27,
1029
1058
  f,
1030
1059
  proto.Contact.serializeBinaryToWriter
1031
1060
  );
@@ -1033,7 +1062,7 @@ proto.Vendor.serializeBinaryToWriter = function(message, writer) {
1033
1062
  f = message.getCommunicationsList();
1034
1063
  if (f.length > 0) {
1035
1064
  writer.writeRepeatedMessage(
1036
- 26,
1065
+ 28,
1037
1066
  f,
1038
1067
  proto.Communication.serializeBinaryToWriter
1039
1068
  );
@@ -1041,7 +1070,7 @@ proto.Vendor.serializeBinaryToWriter = function(message, writer) {
1041
1070
  f = message.getRelationshipsList();
1042
1071
  if (f.length > 0) {
1043
1072
  writer.writeRepeatedMessage(
1044
- 27,
1073
+ 29,
1045
1074
  f,
1046
1075
  proto.Relationship.serializeBinaryToWriter
1047
1076
  );
@@ -1049,7 +1078,7 @@ proto.Vendor.serializeBinaryToWriter = function(message, writer) {
1049
1078
  f = message.getTaxInformationList();
1050
1079
  if (f.length > 0) {
1051
1080
  writer.writeRepeatedMessage(
1052
- 28,
1081
+ 30,
1053
1082
  f,
1054
1083
  proto.TaxInformation.serializeBinaryToWriter
1055
1084
  );
@@ -1057,14 +1086,14 @@ proto.Vendor.serializeBinaryToWriter = function(message, writer) {
1057
1086
  f = message.getFileIds();
1058
1087
  if (f.length > 0) {
1059
1088
  writer.writeString(
1060
- 29,
1089
+ 31,
1061
1090
  f
1062
1091
  );
1063
1092
  }
1064
1093
  f = message.getFilesList();
1065
1094
  if (f.length > 0) {
1066
1095
  writer.writeRepeatedMessage(
1067
- 30,
1096
+ 32,
1068
1097
  f,
1069
1098
  prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq.serializeBinaryToWriter
1070
1099
  );
@@ -1072,14 +1101,21 @@ proto.Vendor.serializeBinaryToWriter = function(message, writer) {
1072
1101
  f = message.getVendorDescription();
1073
1102
  if (f.length > 0) {
1074
1103
  writer.writeString(
1075
- 31,
1104
+ 33,
1076
1105
  f
1077
1106
  );
1078
1107
  }
1079
1108
  f = message.getIsSendToVendor();
1080
1109
  if (f) {
1081
1110
  writer.writeBool(
1082
- 32,
1111
+ 34,
1112
+ f
1113
+ );
1114
+ }
1115
+ f = message.getLineOfApprovalReferencesId();
1116
+ if (f.length > 0) {
1117
+ writer.writeString(
1118
+ 35,
1083
1119
  f
1084
1120
  );
1085
1121
  }
@@ -1339,10 +1375,10 @@ proto.Vendor.prototype.setHouseNumber = function(value) {
1339
1375
 
1340
1376
 
1341
1377
  /**
1342
- * optional string city = 15;
1378
+ * optional string postal_code = 15;
1343
1379
  * @return {string}
1344
1380
  */
1345
- proto.Vendor.prototype.getCity = function() {
1381
+ proto.Vendor.prototype.getPostalCode = function() {
1346
1382
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
1347
1383
  };
1348
1384
 
@@ -1351,16 +1387,16 @@ proto.Vendor.prototype.getCity = function() {
1351
1387
  * @param {string} value
1352
1388
  * @return {!proto.Vendor} returns this
1353
1389
  */
1354
- proto.Vendor.prototype.setCity = function(value) {
1390
+ proto.Vendor.prototype.setPostalCode = function(value) {
1355
1391
  return jspb.Message.setProto3StringField(this, 15, value);
1356
1392
  };
1357
1393
 
1358
1394
 
1359
1395
  /**
1360
- * optional string postal_code = 16;
1396
+ * optional string village = 16;
1361
1397
  * @return {string}
1362
1398
  */
1363
- proto.Vendor.prototype.getPostalCode = function() {
1399
+ proto.Vendor.prototype.getVillage = function() {
1364
1400
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
1365
1401
  };
1366
1402
 
@@ -1369,16 +1405,16 @@ proto.Vendor.prototype.getPostalCode = function() {
1369
1405
  * @param {string} value
1370
1406
  * @return {!proto.Vendor} returns this
1371
1407
  */
1372
- proto.Vendor.prototype.setPostalCode = function(value) {
1408
+ proto.Vendor.prototype.setVillage = function(value) {
1373
1409
  return jspb.Message.setProto3StringField(this, 16, value);
1374
1410
  };
1375
1411
 
1376
1412
 
1377
1413
  /**
1378
- * optional string country = 17;
1414
+ * optional string district = 17;
1379
1415
  * @return {string}
1380
1416
  */
1381
- proto.Vendor.prototype.getCountry = function() {
1417
+ proto.Vendor.prototype.getDistrict = function() {
1382
1418
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
1383
1419
  };
1384
1420
 
@@ -1387,16 +1423,16 @@ proto.Vendor.prototype.getCountry = function() {
1387
1423
  * @param {string} value
1388
1424
  * @return {!proto.Vendor} returns this
1389
1425
  */
1390
- proto.Vendor.prototype.setCountry = function(value) {
1426
+ proto.Vendor.prototype.setDistrict = function(value) {
1391
1427
  return jspb.Message.setProto3StringField(this, 17, value);
1392
1428
  };
1393
1429
 
1394
1430
 
1395
1431
  /**
1396
- * optional string region = 18;
1432
+ * optional string city = 18;
1397
1433
  * @return {string}
1398
1434
  */
1399
- proto.Vendor.prototype.getRegion = function() {
1435
+ proto.Vendor.prototype.getCity = function() {
1400
1436
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, ""));
1401
1437
  };
1402
1438
 
@@ -1405,16 +1441,16 @@ proto.Vendor.prototype.getRegion = function() {
1405
1441
  * @param {string} value
1406
1442
  * @return {!proto.Vendor} returns this
1407
1443
  */
1408
- proto.Vendor.prototype.setRegion = function(value) {
1444
+ proto.Vendor.prototype.setCity = function(value) {
1409
1445
  return jspb.Message.setProto3StringField(this, 18, value);
1410
1446
  };
1411
1447
 
1412
1448
 
1413
1449
  /**
1414
- * optional string language = 19;
1450
+ * optional string province = 19;
1415
1451
  * @return {string}
1416
1452
  */
1417
- proto.Vendor.prototype.getLanguage = function() {
1453
+ proto.Vendor.prototype.getProvince = function() {
1418
1454
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 19, ""));
1419
1455
  };
1420
1456
 
@@ -1423,16 +1459,16 @@ proto.Vendor.prototype.getLanguage = function() {
1423
1459
  * @param {string} value
1424
1460
  * @return {!proto.Vendor} returns this
1425
1461
  */
1426
- proto.Vendor.prototype.setLanguage = function(value) {
1462
+ proto.Vendor.prototype.setProvince = function(value) {
1427
1463
  return jspb.Message.setProto3StringField(this, 19, value);
1428
1464
  };
1429
1465
 
1430
1466
 
1431
1467
  /**
1432
- * optional string industry = 20;
1468
+ * optional string country = 20;
1433
1469
  * @return {string}
1434
1470
  */
1435
- proto.Vendor.prototype.getIndustry = function() {
1471
+ proto.Vendor.prototype.getCountry = function() {
1436
1472
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
1437
1473
  };
1438
1474
 
@@ -1441,16 +1477,16 @@ proto.Vendor.prototype.getIndustry = function() {
1441
1477
  * @param {string} value
1442
1478
  * @return {!proto.Vendor} returns this
1443
1479
  */
1444
- proto.Vendor.prototype.setIndustry = function(value) {
1480
+ proto.Vendor.prototype.setCountry = function(value) {
1445
1481
  return jspb.Message.setProto3StringField(this, 20, value);
1446
1482
  };
1447
1483
 
1448
1484
 
1449
1485
  /**
1450
- * optional string business_partner_role = 21;
1486
+ * optional string language = 21;
1451
1487
  * @return {string}
1452
1488
  */
1453
- proto.Vendor.prototype.getBusinessPartnerRole = function() {
1489
+ proto.Vendor.prototype.getLanguage = function() {
1454
1490
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 21, ""));
1455
1491
  };
1456
1492
 
@@ -1459,16 +1495,16 @@ proto.Vendor.prototype.getBusinessPartnerRole = function() {
1459
1495
  * @param {string} value
1460
1496
  * @return {!proto.Vendor} returns this
1461
1497
  */
1462
- proto.Vendor.prototype.setBusinessPartnerRole = function(value) {
1498
+ proto.Vendor.prototype.setLanguage = function(value) {
1463
1499
  return jspb.Message.setProto3StringField(this, 21, value);
1464
1500
  };
1465
1501
 
1466
1502
 
1467
1503
  /**
1468
- * optional string valid_from = 22;
1504
+ * optional string industry = 22;
1469
1505
  * @return {string}
1470
1506
  */
1471
- proto.Vendor.prototype.getValidFrom = function() {
1507
+ proto.Vendor.prototype.getIndustry = function() {
1472
1508
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 22, ""));
1473
1509
  };
1474
1510
 
@@ -1477,16 +1513,16 @@ proto.Vendor.prototype.getValidFrom = function() {
1477
1513
  * @param {string} value
1478
1514
  * @return {!proto.Vendor} returns this
1479
1515
  */
1480
- proto.Vendor.prototype.setValidFrom = function(value) {
1516
+ proto.Vendor.prototype.setIndustry = function(value) {
1481
1517
  return jspb.Message.setProto3StringField(this, 22, value);
1482
1518
  };
1483
1519
 
1484
1520
 
1485
1521
  /**
1486
- * optional string valid_to = 23;
1522
+ * optional string business_partner_role = 23;
1487
1523
  * @return {string}
1488
1524
  */
1489
- proto.Vendor.prototype.getValidTo = function() {
1525
+ proto.Vendor.prototype.getBusinessPartnerRole = function() {
1490
1526
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 23, ""));
1491
1527
  };
1492
1528
 
@@ -1495,18 +1531,54 @@ proto.Vendor.prototype.getValidTo = function() {
1495
1531
  * @param {string} value
1496
1532
  * @return {!proto.Vendor} returns this
1497
1533
  */
1498
- proto.Vendor.prototype.setValidTo = function(value) {
1534
+ proto.Vendor.prototype.setBusinessPartnerRole = function(value) {
1499
1535
  return jspb.Message.setProto3StringField(this, 23, value);
1500
1536
  };
1501
1537
 
1502
1538
 
1503
1539
  /**
1504
- * repeated BankAccount bank_accounts = 24;
1540
+ * optional string valid_from = 24;
1541
+ * @return {string}
1542
+ */
1543
+ proto.Vendor.prototype.getValidFrom = function() {
1544
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 24, ""));
1545
+ };
1546
+
1547
+
1548
+ /**
1549
+ * @param {string} value
1550
+ * @return {!proto.Vendor} returns this
1551
+ */
1552
+ proto.Vendor.prototype.setValidFrom = function(value) {
1553
+ return jspb.Message.setProto3StringField(this, 24, value);
1554
+ };
1555
+
1556
+
1557
+ /**
1558
+ * optional string valid_to = 25;
1559
+ * @return {string}
1560
+ */
1561
+ proto.Vendor.prototype.getValidTo = function() {
1562
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 25, ""));
1563
+ };
1564
+
1565
+
1566
+ /**
1567
+ * @param {string} value
1568
+ * @return {!proto.Vendor} returns this
1569
+ */
1570
+ proto.Vendor.prototype.setValidTo = function(value) {
1571
+ return jspb.Message.setProto3StringField(this, 25, value);
1572
+ };
1573
+
1574
+
1575
+ /**
1576
+ * repeated BankAccount bank_accounts = 26;
1505
1577
  * @return {!Array<!proto.BankAccount>}
1506
1578
  */
1507
1579
  proto.Vendor.prototype.getBankAccountsList = function() {
1508
1580
  return /** @type{!Array<!proto.BankAccount>} */ (
1509
- jspb.Message.getRepeatedWrapperField(this, proto.BankAccount, 24));
1581
+ jspb.Message.getRepeatedWrapperField(this, proto.BankAccount, 26));
1510
1582
  };
1511
1583
 
1512
1584
 
@@ -1515,7 +1587,7 @@ proto.Vendor.prototype.getBankAccountsList = function() {
1515
1587
  * @return {!proto.Vendor} returns this
1516
1588
  */
1517
1589
  proto.Vendor.prototype.setBankAccountsList = function(value) {
1518
- return jspb.Message.setRepeatedWrapperField(this, 24, value);
1590
+ return jspb.Message.setRepeatedWrapperField(this, 26, value);
1519
1591
  };
1520
1592
 
1521
1593
 
@@ -1525,7 +1597,7 @@ proto.Vendor.prototype.setBankAccountsList = function(value) {
1525
1597
  * @return {!proto.BankAccount}
1526
1598
  */
1527
1599
  proto.Vendor.prototype.addBankAccounts = function(opt_value, opt_index) {
1528
- return jspb.Message.addToRepeatedWrapperField(this, 24, opt_value, proto.BankAccount, opt_index);
1600
+ return jspb.Message.addToRepeatedWrapperField(this, 26, opt_value, proto.BankAccount, opt_index);
1529
1601
  };
1530
1602
 
1531
1603
 
@@ -1539,12 +1611,12 @@ proto.Vendor.prototype.clearBankAccountsList = function() {
1539
1611
 
1540
1612
 
1541
1613
  /**
1542
- * repeated Contact contacts = 25;
1614
+ * repeated Contact contacts = 27;
1543
1615
  * @return {!Array<!proto.Contact>}
1544
1616
  */
1545
1617
  proto.Vendor.prototype.getContactsList = function() {
1546
1618
  return /** @type{!Array<!proto.Contact>} */ (
1547
- jspb.Message.getRepeatedWrapperField(this, proto.Contact, 25));
1619
+ jspb.Message.getRepeatedWrapperField(this, proto.Contact, 27));
1548
1620
  };
1549
1621
 
1550
1622
 
@@ -1553,7 +1625,7 @@ proto.Vendor.prototype.getContactsList = function() {
1553
1625
  * @return {!proto.Vendor} returns this
1554
1626
  */
1555
1627
  proto.Vendor.prototype.setContactsList = function(value) {
1556
- return jspb.Message.setRepeatedWrapperField(this, 25, value);
1628
+ return jspb.Message.setRepeatedWrapperField(this, 27, value);
1557
1629
  };
1558
1630
 
1559
1631
 
@@ -1563,7 +1635,7 @@ proto.Vendor.prototype.setContactsList = function(value) {
1563
1635
  * @return {!proto.Contact}
1564
1636
  */
1565
1637
  proto.Vendor.prototype.addContacts = function(opt_value, opt_index) {
1566
- return jspb.Message.addToRepeatedWrapperField(this, 25, opt_value, proto.Contact, opt_index);
1638
+ return jspb.Message.addToRepeatedWrapperField(this, 27, opt_value, proto.Contact, opt_index);
1567
1639
  };
1568
1640
 
1569
1641
 
@@ -1577,12 +1649,12 @@ proto.Vendor.prototype.clearContactsList = function() {
1577
1649
 
1578
1650
 
1579
1651
  /**
1580
- * repeated Communication communications = 26;
1652
+ * repeated Communication communications = 28;
1581
1653
  * @return {!Array<!proto.Communication>}
1582
1654
  */
1583
1655
  proto.Vendor.prototype.getCommunicationsList = function() {
1584
1656
  return /** @type{!Array<!proto.Communication>} */ (
1585
- jspb.Message.getRepeatedWrapperField(this, proto.Communication, 26));
1657
+ jspb.Message.getRepeatedWrapperField(this, proto.Communication, 28));
1586
1658
  };
1587
1659
 
1588
1660
 
@@ -1591,7 +1663,7 @@ proto.Vendor.prototype.getCommunicationsList = function() {
1591
1663
  * @return {!proto.Vendor} returns this
1592
1664
  */
1593
1665
  proto.Vendor.prototype.setCommunicationsList = function(value) {
1594
- return jspb.Message.setRepeatedWrapperField(this, 26, value);
1666
+ return jspb.Message.setRepeatedWrapperField(this, 28, value);
1595
1667
  };
1596
1668
 
1597
1669
 
@@ -1601,7 +1673,7 @@ proto.Vendor.prototype.setCommunicationsList = function(value) {
1601
1673
  * @return {!proto.Communication}
1602
1674
  */
1603
1675
  proto.Vendor.prototype.addCommunications = function(opt_value, opt_index) {
1604
- return jspb.Message.addToRepeatedWrapperField(this, 26, opt_value, proto.Communication, opt_index);
1676
+ return jspb.Message.addToRepeatedWrapperField(this, 28, opt_value, proto.Communication, opt_index);
1605
1677
  };
1606
1678
 
1607
1679
 
@@ -1615,12 +1687,12 @@ proto.Vendor.prototype.clearCommunicationsList = function() {
1615
1687
 
1616
1688
 
1617
1689
  /**
1618
- * repeated Relationship relationships = 27;
1690
+ * repeated Relationship relationships = 29;
1619
1691
  * @return {!Array<!proto.Relationship>}
1620
1692
  */
1621
1693
  proto.Vendor.prototype.getRelationshipsList = function() {
1622
1694
  return /** @type{!Array<!proto.Relationship>} */ (
1623
- jspb.Message.getRepeatedWrapperField(this, proto.Relationship, 27));
1695
+ jspb.Message.getRepeatedWrapperField(this, proto.Relationship, 29));
1624
1696
  };
1625
1697
 
1626
1698
 
@@ -1629,7 +1701,7 @@ proto.Vendor.prototype.getRelationshipsList = function() {
1629
1701
  * @return {!proto.Vendor} returns this
1630
1702
  */
1631
1703
  proto.Vendor.prototype.setRelationshipsList = function(value) {
1632
- return jspb.Message.setRepeatedWrapperField(this, 27, value);
1704
+ return jspb.Message.setRepeatedWrapperField(this, 29, value);
1633
1705
  };
1634
1706
 
1635
1707
 
@@ -1639,7 +1711,7 @@ proto.Vendor.prototype.setRelationshipsList = function(value) {
1639
1711
  * @return {!proto.Relationship}
1640
1712
  */
1641
1713
  proto.Vendor.prototype.addRelationships = function(opt_value, opt_index) {
1642
- return jspb.Message.addToRepeatedWrapperField(this, 27, opt_value, proto.Relationship, opt_index);
1714
+ return jspb.Message.addToRepeatedWrapperField(this, 29, opt_value, proto.Relationship, opt_index);
1643
1715
  };
1644
1716
 
1645
1717
 
@@ -1653,12 +1725,12 @@ proto.Vendor.prototype.clearRelationshipsList = function() {
1653
1725
 
1654
1726
 
1655
1727
  /**
1656
- * repeated TaxInformation tax_information = 28;
1728
+ * repeated TaxInformation tax_information = 30;
1657
1729
  * @return {!Array<!proto.TaxInformation>}
1658
1730
  */
1659
1731
  proto.Vendor.prototype.getTaxInformationList = function() {
1660
1732
  return /** @type{!Array<!proto.TaxInformation>} */ (
1661
- jspb.Message.getRepeatedWrapperField(this, proto.TaxInformation, 28));
1733
+ jspb.Message.getRepeatedWrapperField(this, proto.TaxInformation, 30));
1662
1734
  };
1663
1735
 
1664
1736
 
@@ -1667,7 +1739,7 @@ proto.Vendor.prototype.getTaxInformationList = function() {
1667
1739
  * @return {!proto.Vendor} returns this
1668
1740
  */
1669
1741
  proto.Vendor.prototype.setTaxInformationList = function(value) {
1670
- return jspb.Message.setRepeatedWrapperField(this, 28, value);
1742
+ return jspb.Message.setRepeatedWrapperField(this, 30, value);
1671
1743
  };
1672
1744
 
1673
1745
 
@@ -1677,7 +1749,7 @@ proto.Vendor.prototype.setTaxInformationList = function(value) {
1677
1749
  * @return {!proto.TaxInformation}
1678
1750
  */
1679
1751
  proto.Vendor.prototype.addTaxInformation = function(opt_value, opt_index) {
1680
- return jspb.Message.addToRepeatedWrapperField(this, 28, opt_value, proto.TaxInformation, opt_index);
1752
+ return jspb.Message.addToRepeatedWrapperField(this, 30, opt_value, proto.TaxInformation, opt_index);
1681
1753
  };
1682
1754
 
1683
1755
 
@@ -1691,11 +1763,11 @@ proto.Vendor.prototype.clearTaxInformationList = function() {
1691
1763
 
1692
1764
 
1693
1765
  /**
1694
- * optional string file_ids = 29;
1766
+ * optional string file_ids = 31;
1695
1767
  * @return {string}
1696
1768
  */
1697
1769
  proto.Vendor.prototype.getFileIds = function() {
1698
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 29, ""));
1770
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 31, ""));
1699
1771
  };
1700
1772
 
1701
1773
 
@@ -1704,17 +1776,17 @@ proto.Vendor.prototype.getFileIds = function() {
1704
1776
  * @return {!proto.Vendor} returns this
1705
1777
  */
1706
1778
  proto.Vendor.prototype.setFileIds = function(value) {
1707
- return jspb.Message.setProto3StringField(this, 29, value);
1779
+ return jspb.Message.setProto3StringField(this, 31, value);
1708
1780
  };
1709
1781
 
1710
1782
 
1711
1783
  /**
1712
- * repeated FileUploadReferencesReq files = 30;
1784
+ * repeated FileUploadReferencesReq files = 32;
1713
1785
  * @return {!Array<!proto.FileUploadReferencesReq>}
1714
1786
  */
1715
1787
  proto.Vendor.prototype.getFilesList = function() {
1716
1788
  return /** @type{!Array<!proto.FileUploadReferencesReq>} */ (
1717
- jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq, 30));
1789
+ jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq, 32));
1718
1790
  };
1719
1791
 
1720
1792
 
@@ -1723,7 +1795,7 @@ proto.Vendor.prototype.getFilesList = function() {
1723
1795
  * @return {!proto.Vendor} returns this
1724
1796
  */
1725
1797
  proto.Vendor.prototype.setFilesList = function(value) {
1726
- return jspb.Message.setRepeatedWrapperField(this, 30, value);
1798
+ return jspb.Message.setRepeatedWrapperField(this, 32, value);
1727
1799
  };
1728
1800
 
1729
1801
 
@@ -1733,7 +1805,7 @@ proto.Vendor.prototype.setFilesList = function(value) {
1733
1805
  * @return {!proto.FileUploadReferencesReq}
1734
1806
  */
1735
1807
  proto.Vendor.prototype.addFiles = function(opt_value, opt_index) {
1736
- return jspb.Message.addToRepeatedWrapperField(this, 30, opt_value, proto.FileUploadReferencesReq, opt_index);
1808
+ return jspb.Message.addToRepeatedWrapperField(this, 32, opt_value, proto.FileUploadReferencesReq, opt_index);
1737
1809
  };
1738
1810
 
1739
1811
 
@@ -1747,11 +1819,11 @@ proto.Vendor.prototype.clearFilesList = function() {
1747
1819
 
1748
1820
 
1749
1821
  /**
1750
- * optional string vendor_description = 31;
1822
+ * optional string vendor_description = 33;
1751
1823
  * @return {string}
1752
1824
  */
1753
1825
  proto.Vendor.prototype.getVendorDescription = function() {
1754
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 31, ""));
1826
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 33, ""));
1755
1827
  };
1756
1828
 
1757
1829
 
@@ -1760,16 +1832,16 @@ proto.Vendor.prototype.getVendorDescription = function() {
1760
1832
  * @return {!proto.Vendor} returns this
1761
1833
  */
1762
1834
  proto.Vendor.prototype.setVendorDescription = function(value) {
1763
- return jspb.Message.setProto3StringField(this, 31, value);
1835
+ return jspb.Message.setProto3StringField(this, 33, value);
1764
1836
  };
1765
1837
 
1766
1838
 
1767
1839
  /**
1768
- * optional bool is_send_to_vendor = 32;
1840
+ * optional bool is_send_to_vendor = 34;
1769
1841
  * @return {boolean}
1770
1842
  */
1771
1843
  proto.Vendor.prototype.getIsSendToVendor = function() {
1772
- return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 32, false));
1844
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 34, false));
1773
1845
  };
1774
1846
 
1775
1847
 
@@ -1778,7 +1850,25 @@ proto.Vendor.prototype.getIsSendToVendor = function() {
1778
1850
  * @return {!proto.Vendor} returns this
1779
1851
  */
1780
1852
  proto.Vendor.prototype.setIsSendToVendor = function(value) {
1781
- return jspb.Message.setProto3BooleanField(this, 32, value);
1853
+ return jspb.Message.setProto3BooleanField(this, 34, value);
1854
+ };
1855
+
1856
+
1857
+ /**
1858
+ * optional string line_of_approval_references_id = 35;
1859
+ * @return {string}
1860
+ */
1861
+ proto.Vendor.prototype.getLineOfApprovalReferencesId = function() {
1862
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 35, ""));
1863
+ };
1864
+
1865
+
1866
+ /**
1867
+ * @param {string} value
1868
+ * @return {!proto.Vendor} returns this
1869
+ */
1870
+ proto.Vendor.prototype.setLineOfApprovalReferencesId = function(value) {
1871
+ return jspb.Message.setProto3StringField(this, 35, value);
1782
1872
  };
1783
1873
 
1784
1874
 
@@ -2958,7 +3048,7 @@ proto.Attachment.prototype.setFileUrl = function(value) {
2958
3048
  * @private {!Array<number>}
2959
3049
  * @const
2960
3050
  */
2961
- proto.BaseVendorRequest.repeatedFields_ = [19,20,21,22,23,24];
3051
+ proto.BaseVendorRequest.repeatedFields_ = [21,22,23,24,25,26];
2962
3052
 
2963
3053
 
2964
3054
 
@@ -3000,15 +3090,17 @@ organization: jspb.Message.getFieldWithDefault(msg, 6, ""),
3000
3090
  status: jspb.Message.getFieldWithDefault(msg, 7, ""),
3001
3091
  street: jspb.Message.getFieldWithDefault(msg, 8, ""),
3002
3092
  houseNumber: jspb.Message.getFieldWithDefault(msg, 9, ""),
3003
- city: jspb.Message.getFieldWithDefault(msg, 10, ""),
3004
- postalCode: jspb.Message.getFieldWithDefault(msg, 11, ""),
3005
- country: jspb.Message.getFieldWithDefault(msg, 12, ""),
3006
- region: jspb.Message.getFieldWithDefault(msg, 13, ""),
3007
- language: jspb.Message.getFieldWithDefault(msg, 14, ""),
3008
- industry: jspb.Message.getFieldWithDefault(msg, 15, ""),
3009
- businessPartnerRole: jspb.Message.getFieldWithDefault(msg, 16, ""),
3010
- validFrom: jspb.Message.getFieldWithDefault(msg, 17, ""),
3011
- validTo: jspb.Message.getFieldWithDefault(msg, 18, ""),
3093
+ postalCode: jspb.Message.getFieldWithDefault(msg, 10, ""),
3094
+ village: jspb.Message.getFieldWithDefault(msg, 11, ""),
3095
+ district: jspb.Message.getFieldWithDefault(msg, 12, ""),
3096
+ city: jspb.Message.getFieldWithDefault(msg, 13, ""),
3097
+ province: jspb.Message.getFieldWithDefault(msg, 14, ""),
3098
+ country: jspb.Message.getFieldWithDefault(msg, 15, ""),
3099
+ language: jspb.Message.getFieldWithDefault(msg, 16, ""),
3100
+ industry: jspb.Message.getFieldWithDefault(msg, 17, ""),
3101
+ businessPartnerRole: jspb.Message.getFieldWithDefault(msg, 18, ""),
3102
+ validFrom: jspb.Message.getFieldWithDefault(msg, 19, ""),
3103
+ validTo: jspb.Message.getFieldWithDefault(msg, 20, ""),
3012
3104
  bankAccountsList: jspb.Message.toObjectList(msg.getBankAccountsList(),
3013
3105
  proto.BankAccount.toObject, includeInstance),
3014
3106
  contactsList: jspb.Message.toObjectList(msg.getContactsList(),
@@ -3021,7 +3113,7 @@ taxInformationList: jspb.Message.toObjectList(msg.getTaxInformationList(),
3021
3113
  proto.TaxInformation.toObject, includeInstance),
3022
3114
  filesList: jspb.Message.toObjectList(msg.getFilesList(),
3023
3115
  prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq.toObject, includeInstance),
3024
- vendorDescription: jspb.Message.getFieldWithDefault(msg, 25, "")
3116
+ vendorDescription: jspb.Message.getFieldWithDefault(msg, 27, "")
3025
3117
  };
3026
3118
 
3027
3119
  if (includeInstance) {
@@ -3096,71 +3188,79 @@ proto.BaseVendorRequest.deserializeBinaryFromReader = function(msg, reader) {
3096
3188
  break;
3097
3189
  case 10:
3098
3190
  var value = /** @type {string} */ (reader.readString());
3099
- msg.setCity(value);
3191
+ msg.setPostalCode(value);
3100
3192
  break;
3101
3193
  case 11:
3102
3194
  var value = /** @type {string} */ (reader.readString());
3103
- msg.setPostalCode(value);
3195
+ msg.setVillage(value);
3104
3196
  break;
3105
3197
  case 12:
3106
3198
  var value = /** @type {string} */ (reader.readString());
3107
- msg.setCountry(value);
3199
+ msg.setDistrict(value);
3108
3200
  break;
3109
3201
  case 13:
3110
3202
  var value = /** @type {string} */ (reader.readString());
3111
- msg.setRegion(value);
3203
+ msg.setCity(value);
3112
3204
  break;
3113
3205
  case 14:
3114
3206
  var value = /** @type {string} */ (reader.readString());
3115
- msg.setLanguage(value);
3207
+ msg.setProvince(value);
3116
3208
  break;
3117
3209
  case 15:
3118
3210
  var value = /** @type {string} */ (reader.readString());
3119
- msg.setIndustry(value);
3211
+ msg.setCountry(value);
3120
3212
  break;
3121
3213
  case 16:
3122
3214
  var value = /** @type {string} */ (reader.readString());
3123
- msg.setBusinessPartnerRole(value);
3215
+ msg.setLanguage(value);
3124
3216
  break;
3125
3217
  case 17:
3126
3218
  var value = /** @type {string} */ (reader.readString());
3127
- msg.setValidFrom(value);
3219
+ msg.setIndustry(value);
3128
3220
  break;
3129
3221
  case 18:
3130
3222
  var value = /** @type {string} */ (reader.readString());
3131
- msg.setValidTo(value);
3223
+ msg.setBusinessPartnerRole(value);
3132
3224
  break;
3133
3225
  case 19:
3226
+ var value = /** @type {string} */ (reader.readString());
3227
+ msg.setValidFrom(value);
3228
+ break;
3229
+ case 20:
3230
+ var value = /** @type {string} */ (reader.readString());
3231
+ msg.setValidTo(value);
3232
+ break;
3233
+ case 21:
3134
3234
  var value = new proto.BankAccount;
3135
3235
  reader.readMessage(value,proto.BankAccount.deserializeBinaryFromReader);
3136
3236
  msg.addBankAccounts(value);
3137
3237
  break;
3138
- case 20:
3238
+ case 22:
3139
3239
  var value = new proto.Contact;
3140
3240
  reader.readMessage(value,proto.Contact.deserializeBinaryFromReader);
3141
3241
  msg.addContacts(value);
3142
3242
  break;
3143
- case 21:
3243
+ case 23:
3144
3244
  var value = new proto.Communication;
3145
3245
  reader.readMessage(value,proto.Communication.deserializeBinaryFromReader);
3146
3246
  msg.addCommunications(value);
3147
3247
  break;
3148
- case 22:
3248
+ case 24:
3149
3249
  var value = new proto.Relationship;
3150
3250
  reader.readMessage(value,proto.Relationship.deserializeBinaryFromReader);
3151
3251
  msg.addRelationships(value);
3152
3252
  break;
3153
- case 23:
3253
+ case 25:
3154
3254
  var value = new proto.TaxInformation;
3155
3255
  reader.readMessage(value,proto.TaxInformation.deserializeBinaryFromReader);
3156
3256
  msg.addTaxInformation(value);
3157
3257
  break;
3158
- case 24:
3258
+ case 26:
3159
3259
  var value = new prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq;
3160
3260
  reader.readMessage(value,prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq.deserializeBinaryFromReader);
3161
3261
  msg.addFiles(value);
3162
3262
  break;
3163
- case 25:
3263
+ case 27:
3164
3264
  var value = /** @type {string} */ (reader.readString());
3165
3265
  msg.setVendorDescription(value);
3166
3266
  break;
@@ -3256,73 +3356,87 @@ proto.BaseVendorRequest.serializeBinaryToWriter = function(message, writer) {
3256
3356
  f
3257
3357
  );
3258
3358
  }
3259
- f = message.getCity();
3359
+ f = message.getPostalCode();
3260
3360
  if (f.length > 0) {
3261
3361
  writer.writeString(
3262
3362
  10,
3263
3363
  f
3264
3364
  );
3265
3365
  }
3266
- f = message.getPostalCode();
3366
+ f = message.getVillage();
3267
3367
  if (f.length > 0) {
3268
3368
  writer.writeString(
3269
3369
  11,
3270
3370
  f
3271
3371
  );
3272
3372
  }
3273
- f = message.getCountry();
3373
+ f = message.getDistrict();
3274
3374
  if (f.length > 0) {
3275
3375
  writer.writeString(
3276
3376
  12,
3277
3377
  f
3278
3378
  );
3279
3379
  }
3280
- f = message.getRegion();
3380
+ f = message.getCity();
3281
3381
  if (f.length > 0) {
3282
3382
  writer.writeString(
3283
3383
  13,
3284
3384
  f
3285
3385
  );
3286
3386
  }
3287
- f = message.getLanguage();
3387
+ f = message.getProvince();
3288
3388
  if (f.length > 0) {
3289
3389
  writer.writeString(
3290
3390
  14,
3291
3391
  f
3292
3392
  );
3293
3393
  }
3294
- f = message.getIndustry();
3394
+ f = message.getCountry();
3295
3395
  if (f.length > 0) {
3296
3396
  writer.writeString(
3297
3397
  15,
3298
3398
  f
3299
3399
  );
3300
3400
  }
3301
- f = message.getBusinessPartnerRole();
3401
+ f = message.getLanguage();
3302
3402
  if (f.length > 0) {
3303
3403
  writer.writeString(
3304
3404
  16,
3305
3405
  f
3306
3406
  );
3307
3407
  }
3308
- f = message.getValidFrom();
3408
+ f = message.getIndustry();
3309
3409
  if (f.length > 0) {
3310
3410
  writer.writeString(
3311
3411
  17,
3312
3412
  f
3313
3413
  );
3314
3414
  }
3315
- f = message.getValidTo();
3415
+ f = message.getBusinessPartnerRole();
3316
3416
  if (f.length > 0) {
3317
3417
  writer.writeString(
3318
3418
  18,
3319
3419
  f
3320
3420
  );
3321
3421
  }
3422
+ f = message.getValidFrom();
3423
+ if (f.length > 0) {
3424
+ writer.writeString(
3425
+ 19,
3426
+ f
3427
+ );
3428
+ }
3429
+ f = message.getValidTo();
3430
+ if (f.length > 0) {
3431
+ writer.writeString(
3432
+ 20,
3433
+ f
3434
+ );
3435
+ }
3322
3436
  f = message.getBankAccountsList();
3323
3437
  if (f.length > 0) {
3324
3438
  writer.writeRepeatedMessage(
3325
- 19,
3439
+ 21,
3326
3440
  f,
3327
3441
  proto.BankAccount.serializeBinaryToWriter
3328
3442
  );
@@ -3330,7 +3444,7 @@ proto.BaseVendorRequest.serializeBinaryToWriter = function(message, writer) {
3330
3444
  f = message.getContactsList();
3331
3445
  if (f.length > 0) {
3332
3446
  writer.writeRepeatedMessage(
3333
- 20,
3447
+ 22,
3334
3448
  f,
3335
3449
  proto.Contact.serializeBinaryToWriter
3336
3450
  );
@@ -3338,7 +3452,7 @@ proto.BaseVendorRequest.serializeBinaryToWriter = function(message, writer) {
3338
3452
  f = message.getCommunicationsList();
3339
3453
  if (f.length > 0) {
3340
3454
  writer.writeRepeatedMessage(
3341
- 21,
3455
+ 23,
3342
3456
  f,
3343
3457
  proto.Communication.serializeBinaryToWriter
3344
3458
  );
@@ -3346,7 +3460,7 @@ proto.BaseVendorRequest.serializeBinaryToWriter = function(message, writer) {
3346
3460
  f = message.getRelationshipsList();
3347
3461
  if (f.length > 0) {
3348
3462
  writer.writeRepeatedMessage(
3349
- 22,
3463
+ 24,
3350
3464
  f,
3351
3465
  proto.Relationship.serializeBinaryToWriter
3352
3466
  );
@@ -3354,7 +3468,7 @@ proto.BaseVendorRequest.serializeBinaryToWriter = function(message, writer) {
3354
3468
  f = message.getTaxInformationList();
3355
3469
  if (f.length > 0) {
3356
3470
  writer.writeRepeatedMessage(
3357
- 23,
3471
+ 25,
3358
3472
  f,
3359
3473
  proto.TaxInformation.serializeBinaryToWriter
3360
3474
  );
@@ -3362,7 +3476,7 @@ proto.BaseVendorRequest.serializeBinaryToWriter = function(message, writer) {
3362
3476
  f = message.getFilesList();
3363
3477
  if (f.length > 0) {
3364
3478
  writer.writeRepeatedMessage(
3365
- 24,
3479
+ 26,
3366
3480
  f,
3367
3481
  prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq.serializeBinaryToWriter
3368
3482
  );
@@ -3370,7 +3484,7 @@ proto.BaseVendorRequest.serializeBinaryToWriter = function(message, writer) {
3370
3484
  f = message.getVendorDescription();
3371
3485
  if (f.length > 0) {
3372
3486
  writer.writeString(
3373
- 25,
3487
+ 27,
3374
3488
  f
3375
3489
  );
3376
3490
  }
@@ -3540,10 +3654,10 @@ proto.BaseVendorRequest.prototype.setHouseNumber = function(value) {
3540
3654
 
3541
3655
 
3542
3656
  /**
3543
- * optional string city = 10;
3657
+ * optional string postal_code = 10;
3544
3658
  * @return {string}
3545
3659
  */
3546
- proto.BaseVendorRequest.prototype.getCity = function() {
3660
+ proto.BaseVendorRequest.prototype.getPostalCode = function() {
3547
3661
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
3548
3662
  };
3549
3663
 
@@ -3552,16 +3666,16 @@ proto.BaseVendorRequest.prototype.getCity = function() {
3552
3666
  * @param {string} value
3553
3667
  * @return {!proto.BaseVendorRequest} returns this
3554
3668
  */
3555
- proto.BaseVendorRequest.prototype.setCity = function(value) {
3669
+ proto.BaseVendorRequest.prototype.setPostalCode = function(value) {
3556
3670
  return jspb.Message.setProto3StringField(this, 10, value);
3557
3671
  };
3558
3672
 
3559
3673
 
3560
3674
  /**
3561
- * optional string postal_code = 11;
3675
+ * optional string village = 11;
3562
3676
  * @return {string}
3563
3677
  */
3564
- proto.BaseVendorRequest.prototype.getPostalCode = function() {
3678
+ proto.BaseVendorRequest.prototype.getVillage = function() {
3565
3679
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
3566
3680
  };
3567
3681
 
@@ -3570,16 +3684,16 @@ proto.BaseVendorRequest.prototype.getPostalCode = function() {
3570
3684
  * @param {string} value
3571
3685
  * @return {!proto.BaseVendorRequest} returns this
3572
3686
  */
3573
- proto.BaseVendorRequest.prototype.setPostalCode = function(value) {
3687
+ proto.BaseVendorRequest.prototype.setVillage = function(value) {
3574
3688
  return jspb.Message.setProto3StringField(this, 11, value);
3575
3689
  };
3576
3690
 
3577
3691
 
3578
3692
  /**
3579
- * optional string country = 12;
3693
+ * optional string district = 12;
3580
3694
  * @return {string}
3581
3695
  */
3582
- proto.BaseVendorRequest.prototype.getCountry = function() {
3696
+ proto.BaseVendorRequest.prototype.getDistrict = function() {
3583
3697
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
3584
3698
  };
3585
3699
 
@@ -3588,16 +3702,16 @@ proto.BaseVendorRequest.prototype.getCountry = function() {
3588
3702
  * @param {string} value
3589
3703
  * @return {!proto.BaseVendorRequest} returns this
3590
3704
  */
3591
- proto.BaseVendorRequest.prototype.setCountry = function(value) {
3705
+ proto.BaseVendorRequest.prototype.setDistrict = function(value) {
3592
3706
  return jspb.Message.setProto3StringField(this, 12, value);
3593
3707
  };
3594
3708
 
3595
3709
 
3596
3710
  /**
3597
- * optional string region = 13;
3711
+ * optional string city = 13;
3598
3712
  * @return {string}
3599
3713
  */
3600
- proto.BaseVendorRequest.prototype.getRegion = function() {
3714
+ proto.BaseVendorRequest.prototype.getCity = function() {
3601
3715
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
3602
3716
  };
3603
3717
 
@@ -3606,16 +3720,16 @@ proto.BaseVendorRequest.prototype.getRegion = function() {
3606
3720
  * @param {string} value
3607
3721
  * @return {!proto.BaseVendorRequest} returns this
3608
3722
  */
3609
- proto.BaseVendorRequest.prototype.setRegion = function(value) {
3723
+ proto.BaseVendorRequest.prototype.setCity = function(value) {
3610
3724
  return jspb.Message.setProto3StringField(this, 13, value);
3611
3725
  };
3612
3726
 
3613
3727
 
3614
3728
  /**
3615
- * optional string language = 14;
3729
+ * optional string province = 14;
3616
3730
  * @return {string}
3617
3731
  */
3618
- proto.BaseVendorRequest.prototype.getLanguage = function() {
3732
+ proto.BaseVendorRequest.prototype.getProvince = function() {
3619
3733
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
3620
3734
  };
3621
3735
 
@@ -3624,16 +3738,16 @@ proto.BaseVendorRequest.prototype.getLanguage = function() {
3624
3738
  * @param {string} value
3625
3739
  * @return {!proto.BaseVendorRequest} returns this
3626
3740
  */
3627
- proto.BaseVendorRequest.prototype.setLanguage = function(value) {
3741
+ proto.BaseVendorRequest.prototype.setProvince = function(value) {
3628
3742
  return jspb.Message.setProto3StringField(this, 14, value);
3629
3743
  };
3630
3744
 
3631
3745
 
3632
3746
  /**
3633
- * optional string industry = 15;
3747
+ * optional string country = 15;
3634
3748
  * @return {string}
3635
3749
  */
3636
- proto.BaseVendorRequest.prototype.getIndustry = function() {
3750
+ proto.BaseVendorRequest.prototype.getCountry = function() {
3637
3751
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
3638
3752
  };
3639
3753
 
@@ -3642,16 +3756,16 @@ proto.BaseVendorRequest.prototype.getIndustry = function() {
3642
3756
  * @param {string} value
3643
3757
  * @return {!proto.BaseVendorRequest} returns this
3644
3758
  */
3645
- proto.BaseVendorRequest.prototype.setIndustry = function(value) {
3759
+ proto.BaseVendorRequest.prototype.setCountry = function(value) {
3646
3760
  return jspb.Message.setProto3StringField(this, 15, value);
3647
3761
  };
3648
3762
 
3649
3763
 
3650
3764
  /**
3651
- * optional string business_partner_role = 16;
3765
+ * optional string language = 16;
3652
3766
  * @return {string}
3653
3767
  */
3654
- proto.BaseVendorRequest.prototype.getBusinessPartnerRole = function() {
3768
+ proto.BaseVendorRequest.prototype.getLanguage = function() {
3655
3769
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
3656
3770
  };
3657
3771
 
@@ -3660,16 +3774,16 @@ proto.BaseVendorRequest.prototype.getBusinessPartnerRole = function() {
3660
3774
  * @param {string} value
3661
3775
  * @return {!proto.BaseVendorRequest} returns this
3662
3776
  */
3663
- proto.BaseVendorRequest.prototype.setBusinessPartnerRole = function(value) {
3777
+ proto.BaseVendorRequest.prototype.setLanguage = function(value) {
3664
3778
  return jspb.Message.setProto3StringField(this, 16, value);
3665
3779
  };
3666
3780
 
3667
3781
 
3668
3782
  /**
3669
- * optional string valid_from = 17;
3783
+ * optional string industry = 17;
3670
3784
  * @return {string}
3671
3785
  */
3672
- proto.BaseVendorRequest.prototype.getValidFrom = function() {
3786
+ proto.BaseVendorRequest.prototype.getIndustry = function() {
3673
3787
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
3674
3788
  };
3675
3789
 
@@ -3678,16 +3792,16 @@ proto.BaseVendorRequest.prototype.getValidFrom = function() {
3678
3792
  * @param {string} value
3679
3793
  * @return {!proto.BaseVendorRequest} returns this
3680
3794
  */
3681
- proto.BaseVendorRequest.prototype.setValidFrom = function(value) {
3795
+ proto.BaseVendorRequest.prototype.setIndustry = function(value) {
3682
3796
  return jspb.Message.setProto3StringField(this, 17, value);
3683
3797
  };
3684
3798
 
3685
3799
 
3686
3800
  /**
3687
- * optional string valid_to = 18;
3801
+ * optional string business_partner_role = 18;
3688
3802
  * @return {string}
3689
3803
  */
3690
- proto.BaseVendorRequest.prototype.getValidTo = function() {
3804
+ proto.BaseVendorRequest.prototype.getBusinessPartnerRole = function() {
3691
3805
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, ""));
3692
3806
  };
3693
3807
 
@@ -3696,18 +3810,54 @@ proto.BaseVendorRequest.prototype.getValidTo = function() {
3696
3810
  * @param {string} value
3697
3811
  * @return {!proto.BaseVendorRequest} returns this
3698
3812
  */
3699
- proto.BaseVendorRequest.prototype.setValidTo = function(value) {
3813
+ proto.BaseVendorRequest.prototype.setBusinessPartnerRole = function(value) {
3700
3814
  return jspb.Message.setProto3StringField(this, 18, value);
3701
3815
  };
3702
3816
 
3703
3817
 
3704
3818
  /**
3705
- * repeated BankAccount bank_accounts = 19;
3819
+ * optional string valid_from = 19;
3820
+ * @return {string}
3821
+ */
3822
+ proto.BaseVendorRequest.prototype.getValidFrom = function() {
3823
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 19, ""));
3824
+ };
3825
+
3826
+
3827
+ /**
3828
+ * @param {string} value
3829
+ * @return {!proto.BaseVendorRequest} returns this
3830
+ */
3831
+ proto.BaseVendorRequest.prototype.setValidFrom = function(value) {
3832
+ return jspb.Message.setProto3StringField(this, 19, value);
3833
+ };
3834
+
3835
+
3836
+ /**
3837
+ * optional string valid_to = 20;
3838
+ * @return {string}
3839
+ */
3840
+ proto.BaseVendorRequest.prototype.getValidTo = function() {
3841
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
3842
+ };
3843
+
3844
+
3845
+ /**
3846
+ * @param {string} value
3847
+ * @return {!proto.BaseVendorRequest} returns this
3848
+ */
3849
+ proto.BaseVendorRequest.prototype.setValidTo = function(value) {
3850
+ return jspb.Message.setProto3StringField(this, 20, value);
3851
+ };
3852
+
3853
+
3854
+ /**
3855
+ * repeated BankAccount bank_accounts = 21;
3706
3856
  * @return {!Array<!proto.BankAccount>}
3707
3857
  */
3708
3858
  proto.BaseVendorRequest.prototype.getBankAccountsList = function() {
3709
3859
  return /** @type{!Array<!proto.BankAccount>} */ (
3710
- jspb.Message.getRepeatedWrapperField(this, proto.BankAccount, 19));
3860
+ jspb.Message.getRepeatedWrapperField(this, proto.BankAccount, 21));
3711
3861
  };
3712
3862
 
3713
3863
 
@@ -3716,7 +3866,7 @@ proto.BaseVendorRequest.prototype.getBankAccountsList = function() {
3716
3866
  * @return {!proto.BaseVendorRequest} returns this
3717
3867
  */
3718
3868
  proto.BaseVendorRequest.prototype.setBankAccountsList = function(value) {
3719
- return jspb.Message.setRepeatedWrapperField(this, 19, value);
3869
+ return jspb.Message.setRepeatedWrapperField(this, 21, value);
3720
3870
  };
3721
3871
 
3722
3872
 
@@ -3726,7 +3876,7 @@ proto.BaseVendorRequest.prototype.setBankAccountsList = function(value) {
3726
3876
  * @return {!proto.BankAccount}
3727
3877
  */
3728
3878
  proto.BaseVendorRequest.prototype.addBankAccounts = function(opt_value, opt_index) {
3729
- return jspb.Message.addToRepeatedWrapperField(this, 19, opt_value, proto.BankAccount, opt_index);
3879
+ return jspb.Message.addToRepeatedWrapperField(this, 21, opt_value, proto.BankAccount, opt_index);
3730
3880
  };
3731
3881
 
3732
3882
 
@@ -3740,12 +3890,12 @@ proto.BaseVendorRequest.prototype.clearBankAccountsList = function() {
3740
3890
 
3741
3891
 
3742
3892
  /**
3743
- * repeated Contact contacts = 20;
3893
+ * repeated Contact contacts = 22;
3744
3894
  * @return {!Array<!proto.Contact>}
3745
3895
  */
3746
3896
  proto.BaseVendorRequest.prototype.getContactsList = function() {
3747
3897
  return /** @type{!Array<!proto.Contact>} */ (
3748
- jspb.Message.getRepeatedWrapperField(this, proto.Contact, 20));
3898
+ jspb.Message.getRepeatedWrapperField(this, proto.Contact, 22));
3749
3899
  };
3750
3900
 
3751
3901
 
@@ -3754,7 +3904,7 @@ proto.BaseVendorRequest.prototype.getContactsList = function() {
3754
3904
  * @return {!proto.BaseVendorRequest} returns this
3755
3905
  */
3756
3906
  proto.BaseVendorRequest.prototype.setContactsList = function(value) {
3757
- return jspb.Message.setRepeatedWrapperField(this, 20, value);
3907
+ return jspb.Message.setRepeatedWrapperField(this, 22, value);
3758
3908
  };
3759
3909
 
3760
3910
 
@@ -3764,7 +3914,7 @@ proto.BaseVendorRequest.prototype.setContactsList = function(value) {
3764
3914
  * @return {!proto.Contact}
3765
3915
  */
3766
3916
  proto.BaseVendorRequest.prototype.addContacts = function(opt_value, opt_index) {
3767
- return jspb.Message.addToRepeatedWrapperField(this, 20, opt_value, proto.Contact, opt_index);
3917
+ return jspb.Message.addToRepeatedWrapperField(this, 22, opt_value, proto.Contact, opt_index);
3768
3918
  };
3769
3919
 
3770
3920
 
@@ -3778,12 +3928,12 @@ proto.BaseVendorRequest.prototype.clearContactsList = function() {
3778
3928
 
3779
3929
 
3780
3930
  /**
3781
- * repeated Communication communications = 21;
3931
+ * repeated Communication communications = 23;
3782
3932
  * @return {!Array<!proto.Communication>}
3783
3933
  */
3784
3934
  proto.BaseVendorRequest.prototype.getCommunicationsList = function() {
3785
3935
  return /** @type{!Array<!proto.Communication>} */ (
3786
- jspb.Message.getRepeatedWrapperField(this, proto.Communication, 21));
3936
+ jspb.Message.getRepeatedWrapperField(this, proto.Communication, 23));
3787
3937
  };
3788
3938
 
3789
3939
 
@@ -3792,7 +3942,7 @@ proto.BaseVendorRequest.prototype.getCommunicationsList = function() {
3792
3942
  * @return {!proto.BaseVendorRequest} returns this
3793
3943
  */
3794
3944
  proto.BaseVendorRequest.prototype.setCommunicationsList = function(value) {
3795
- return jspb.Message.setRepeatedWrapperField(this, 21, value);
3945
+ return jspb.Message.setRepeatedWrapperField(this, 23, value);
3796
3946
  };
3797
3947
 
3798
3948
 
@@ -3802,7 +3952,7 @@ proto.BaseVendorRequest.prototype.setCommunicationsList = function(value) {
3802
3952
  * @return {!proto.Communication}
3803
3953
  */
3804
3954
  proto.BaseVendorRequest.prototype.addCommunications = function(opt_value, opt_index) {
3805
- return jspb.Message.addToRepeatedWrapperField(this, 21, opt_value, proto.Communication, opt_index);
3955
+ return jspb.Message.addToRepeatedWrapperField(this, 23, opt_value, proto.Communication, opt_index);
3806
3956
  };
3807
3957
 
3808
3958
 
@@ -3816,12 +3966,12 @@ proto.BaseVendorRequest.prototype.clearCommunicationsList = function() {
3816
3966
 
3817
3967
 
3818
3968
  /**
3819
- * repeated Relationship relationships = 22;
3969
+ * repeated Relationship relationships = 24;
3820
3970
  * @return {!Array<!proto.Relationship>}
3821
3971
  */
3822
3972
  proto.BaseVendorRequest.prototype.getRelationshipsList = function() {
3823
3973
  return /** @type{!Array<!proto.Relationship>} */ (
3824
- jspb.Message.getRepeatedWrapperField(this, proto.Relationship, 22));
3974
+ jspb.Message.getRepeatedWrapperField(this, proto.Relationship, 24));
3825
3975
  };
3826
3976
 
3827
3977
 
@@ -3830,7 +3980,7 @@ proto.BaseVendorRequest.prototype.getRelationshipsList = function() {
3830
3980
  * @return {!proto.BaseVendorRequest} returns this
3831
3981
  */
3832
3982
  proto.BaseVendorRequest.prototype.setRelationshipsList = function(value) {
3833
- return jspb.Message.setRepeatedWrapperField(this, 22, value);
3983
+ return jspb.Message.setRepeatedWrapperField(this, 24, value);
3834
3984
  };
3835
3985
 
3836
3986
 
@@ -3840,7 +3990,7 @@ proto.BaseVendorRequest.prototype.setRelationshipsList = function(value) {
3840
3990
  * @return {!proto.Relationship}
3841
3991
  */
3842
3992
  proto.BaseVendorRequest.prototype.addRelationships = function(opt_value, opt_index) {
3843
- return jspb.Message.addToRepeatedWrapperField(this, 22, opt_value, proto.Relationship, opt_index);
3993
+ return jspb.Message.addToRepeatedWrapperField(this, 24, opt_value, proto.Relationship, opt_index);
3844
3994
  };
3845
3995
 
3846
3996
 
@@ -3854,12 +4004,12 @@ proto.BaseVendorRequest.prototype.clearRelationshipsList = function() {
3854
4004
 
3855
4005
 
3856
4006
  /**
3857
- * repeated TaxInformation tax_information = 23;
4007
+ * repeated TaxInformation tax_information = 25;
3858
4008
  * @return {!Array<!proto.TaxInformation>}
3859
4009
  */
3860
4010
  proto.BaseVendorRequest.prototype.getTaxInformationList = function() {
3861
4011
  return /** @type{!Array<!proto.TaxInformation>} */ (
3862
- jspb.Message.getRepeatedWrapperField(this, proto.TaxInformation, 23));
4012
+ jspb.Message.getRepeatedWrapperField(this, proto.TaxInformation, 25));
3863
4013
  };
3864
4014
 
3865
4015
 
@@ -3868,7 +4018,7 @@ proto.BaseVendorRequest.prototype.getTaxInformationList = function() {
3868
4018
  * @return {!proto.BaseVendorRequest} returns this
3869
4019
  */
3870
4020
  proto.BaseVendorRequest.prototype.setTaxInformationList = function(value) {
3871
- return jspb.Message.setRepeatedWrapperField(this, 23, value);
4021
+ return jspb.Message.setRepeatedWrapperField(this, 25, value);
3872
4022
  };
3873
4023
 
3874
4024
 
@@ -3878,7 +4028,7 @@ proto.BaseVendorRequest.prototype.setTaxInformationList = function(value) {
3878
4028
  * @return {!proto.TaxInformation}
3879
4029
  */
3880
4030
  proto.BaseVendorRequest.prototype.addTaxInformation = function(opt_value, opt_index) {
3881
- return jspb.Message.addToRepeatedWrapperField(this, 23, opt_value, proto.TaxInformation, opt_index);
4031
+ return jspb.Message.addToRepeatedWrapperField(this, 25, opt_value, proto.TaxInformation, opt_index);
3882
4032
  };
3883
4033
 
3884
4034
 
@@ -3892,12 +4042,12 @@ proto.BaseVendorRequest.prototype.clearTaxInformationList = function() {
3892
4042
 
3893
4043
 
3894
4044
  /**
3895
- * repeated FileUploadReferencesReq files = 24;
4045
+ * repeated FileUploadReferencesReq files = 26;
3896
4046
  * @return {!Array<!proto.FileUploadReferencesReq>}
3897
4047
  */
3898
4048
  proto.BaseVendorRequest.prototype.getFilesList = function() {
3899
4049
  return /** @type{!Array<!proto.FileUploadReferencesReq>} */ (
3900
- jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq, 24));
4050
+ jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq, 26));
3901
4051
  };
3902
4052
 
3903
4053
 
@@ -3906,7 +4056,7 @@ proto.BaseVendorRequest.prototype.getFilesList = function() {
3906
4056
  * @return {!proto.BaseVendorRequest} returns this
3907
4057
  */
3908
4058
  proto.BaseVendorRequest.prototype.setFilesList = function(value) {
3909
- return jspb.Message.setRepeatedWrapperField(this, 24, value);
4059
+ return jspb.Message.setRepeatedWrapperField(this, 26, value);
3910
4060
  };
3911
4061
 
3912
4062
 
@@ -3916,7 +4066,7 @@ proto.BaseVendorRequest.prototype.setFilesList = function(value) {
3916
4066
  * @return {!proto.FileUploadReferencesReq}
3917
4067
  */
3918
4068
  proto.BaseVendorRequest.prototype.addFiles = function(opt_value, opt_index) {
3919
- return jspb.Message.addToRepeatedWrapperField(this, 24, opt_value, proto.FileUploadReferencesReq, opt_index);
4069
+ return jspb.Message.addToRepeatedWrapperField(this, 26, opt_value, proto.FileUploadReferencesReq, opt_index);
3920
4070
  };
3921
4071
 
3922
4072
 
@@ -3930,11 +4080,11 @@ proto.BaseVendorRequest.prototype.clearFilesList = function() {
3930
4080
 
3931
4081
 
3932
4082
  /**
3933
- * optional string vendor_description = 25;
4083
+ * optional string vendor_description = 27;
3934
4084
  * @return {string}
3935
4085
  */
3936
4086
  proto.BaseVendorRequest.prototype.getVendorDescription = function() {
3937
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 25, ""));
4087
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
3938
4088
  };
3939
4089
 
3940
4090
 
@@ -3943,7 +4093,7 @@ proto.BaseVendorRequest.prototype.getVendorDescription = function() {
3943
4093
  * @return {!proto.BaseVendorRequest} returns this
3944
4094
  */
3945
4095
  proto.BaseVendorRequest.prototype.setVendorDescription = function(value) {
3946
- return jspb.Message.setProto3StringField(this, 25, value);
4096
+ return jspb.Message.setProto3StringField(this, 27, value);
3947
4097
  };
3948
4098
 
3949
4099
 
@@ -6138,17 +6288,17 @@ proto.GetVendorDetailResponse.serializeBinaryToWriter = function(message, writer
6138
6288
 
6139
6289
 
6140
6290
  /**
6141
- * repeated prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail transaction_builder = 1;
6142
- * @return {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>}
6291
+ * repeated TransactionBuilderFieldsDetail transaction_builder = 1;
6292
+ * @return {!Array<!proto.TransactionBuilderFieldsDetail>}
6143
6293
  */
6144
6294
  proto.GetVendorDetailResponse.prototype.getTransactionBuilderList = function() {
6145
- return /** @type{!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} */ (
6295
+ return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
6146
6296
  jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
6147
6297
  };
6148
6298
 
6149
6299
 
6150
6300
  /**
6151
- * @param {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} value
6301
+ * @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
6152
6302
  * @return {!proto.GetVendorDetailResponse} returns this
6153
6303
  */
6154
6304
  proto.GetVendorDetailResponse.prototype.setTransactionBuilderList = function(value) {
@@ -6157,12 +6307,12 @@ proto.GetVendorDetailResponse.prototype.setTransactionBuilderList = function(val
6157
6307
 
6158
6308
 
6159
6309
  /**
6160
- * @param {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail=} opt_value
6310
+ * @param {!proto.TransactionBuilderFieldsDetail=} opt_value
6161
6311
  * @param {number=} opt_index
6162
- * @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail}
6312
+ * @return {!proto.TransactionBuilderFieldsDetail}
6163
6313
  */
6164
6314
  proto.GetVendorDetailResponse.prototype.addTransactionBuilder = function(opt_value, opt_index) {
6165
- return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail, opt_index);
6315
+ return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
6166
6316
  };
6167
6317
 
6168
6318
 
@@ -6351,17 +6501,17 @@ proto.GetVendorItemPreload.serializeBinaryToWriter = function(message, writer) {
6351
6501
 
6352
6502
 
6353
6503
  /**
6354
- * repeated prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail transaction_builder_item = 1;
6355
- * @return {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>}
6504
+ * repeated TransactionBuilderFieldsDetail transaction_builder_item = 1;
6505
+ * @return {!Array<!proto.TransactionBuilderFieldsDetail>}
6356
6506
  */
6357
6507
  proto.GetVendorItemPreload.prototype.getTransactionBuilderItemList = function() {
6358
- return /** @type{!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} */ (
6508
+ return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
6359
6509
  jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
6360
6510
  };
6361
6511
 
6362
6512
 
6363
6513
  /**
6364
- * @param {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} value
6514
+ * @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
6365
6515
  * @return {!proto.GetVendorItemPreload} returns this
6366
6516
  */
6367
6517
  proto.GetVendorItemPreload.prototype.setTransactionBuilderItemList = function(value) {
@@ -6370,12 +6520,12 @@ proto.GetVendorItemPreload.prototype.setTransactionBuilderItemList = function(va
6370
6520
 
6371
6521
 
6372
6522
  /**
6373
- * @param {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail=} opt_value
6523
+ * @param {!proto.TransactionBuilderFieldsDetail=} opt_value
6374
6524
  * @param {number=} opt_index
6375
- * @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail}
6525
+ * @return {!proto.TransactionBuilderFieldsDetail}
6376
6526
  */
6377
6527
  proto.GetVendorItemPreload.prototype.addTransactionBuilderItem = function(opt_value, opt_index) {
6378
- return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail, opt_index);
6528
+ return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
6379
6529
  };
6380
6530
 
6381
6531
 
@@ -6549,17 +6699,17 @@ proto.GetVendorItemDetailPreload.serializeBinaryToWriter = function(message, wri
6549
6699
 
6550
6700
 
6551
6701
  /**
6552
- * repeated prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail transaction_builder_item_detail = 1;
6553
- * @return {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>}
6702
+ * repeated TransactionBuilderFieldsDetail transaction_builder_item_detail = 1;
6703
+ * @return {!Array<!proto.TransactionBuilderFieldsDetail>}
6554
6704
  */
6555
6705
  proto.GetVendorItemDetailPreload.prototype.getTransactionBuilderItemDetailList = function() {
6556
- return /** @type{!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} */ (
6706
+ return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
6557
6707
  jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
6558
6708
  };
6559
6709
 
6560
6710
 
6561
6711
  /**
6562
- * @param {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} value
6712
+ * @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
6563
6713
  * @return {!proto.GetVendorItemDetailPreload} returns this
6564
6714
  */
6565
6715
  proto.GetVendorItemDetailPreload.prototype.setTransactionBuilderItemDetailList = function(value) {
@@ -6568,12 +6718,12 @@ proto.GetVendorItemDetailPreload.prototype.setTransactionBuilderItemDetailList =
6568
6718
 
6569
6719
 
6570
6720
  /**
6571
- * @param {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail=} opt_value
6721
+ * @param {!proto.TransactionBuilderFieldsDetail=} opt_value
6572
6722
  * @param {number=} opt_index
6573
- * @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail}
6723
+ * @return {!proto.TransactionBuilderFieldsDetail}
6574
6724
  */
6575
6725
  proto.GetVendorItemDetailPreload.prototype.addTransactionBuilderItemDetail = function(opt_value, opt_index) {
6576
- return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail, opt_index);
6726
+ return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
6577
6727
  };
6578
6728
 
6579
6729