@aldiokta/protocgen 1.1.51 → 1.1.52

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 (45) hide show
  1. package/package.json +1 -1
  2. package/prisca/v1/bidding/bidding_grpc_pb.js +23 -0
  3. package/prisca/v1/bidding/bidding_pb.js +463 -2
  4. package/prisca/v1/business_fields/business_fields_grpc_pb.js +33 -0
  5. package/prisca/v1/business_fields/business_fields_pb.js +356 -0
  6. package/prisca/v1/core/access_api/access_api_grpc_pb.js +204 -0
  7. package/prisca/v1/core/access_api/access_api_pb.js +3024 -0
  8. package/prisca/v1/core/access_manager/access_manager_grpc_pb.js +66 -0
  9. package/prisca/v1/core/access_manager/access_manager_pb.js +1346 -2
  10. package/prisca/v1/core/attribute/attribute_grpc_pb.js +474 -0
  11. package/prisca/v1/core/attribute/attribute_pb.js +6550 -0
  12. package/prisca/v1/core/auth/auth_grpc_pb.js +22 -0
  13. package/prisca/v1/core/auth/auth_pb.js +152 -0
  14. package/prisca/v1/core/commodity/commodity_grpc_pb.js +156 -0
  15. package/prisca/v1/core/commodity/commodity_pb.js +1988 -0
  16. package/prisca/v1/core/employee/employee_grpc_pb.js +14 -3
  17. package/prisca/v1/core/employee/employee_pb.js +203 -0
  18. package/prisca/v1/core/identity_provider/identity_provider_grpc_pb.js +156 -0
  19. package/prisca/v1/core/identity_provider/identity_provider_pb.js +2018 -0
  20. package/prisca/v1/core/item_transaction/item_transaction_pb.js +62 -2
  21. package/prisca/v1/core/line_of_approval_delegation/line_of_approval_delegation_pb.js +65 -35
  22. package/prisca/v1/core/material/material_grpc_pb.js +2 -0
  23. package/prisca/v1/core/material/material_pb.js +420 -2
  24. package/prisca/v1/core/messaging/email_template_grpc_pb.js +33 -0
  25. package/prisca/v1/core/messaging/email_template_pb.js +385 -0
  26. package/prisca/v1/core/number_range/number_range_grpc_pb.js +33 -0
  27. package/prisca/v1/core/number_range/number_range_pb.js +385 -0
  28. package/prisca/v1/core/report/report_pb.js +31 -1
  29. package/prisca/v1/core/transaction_builder/transaction_builder_grpc_pb.js +33 -0
  30. package/prisca/v1/core/transaction_builder/transaction_builder_pb.js +364 -0
  31. package/prisca/v1/core/users/users_grpc_pb.js +1 -0
  32. package/prisca/v1/core/users/users_pb.js +2 -0
  33. package/prisca/v1/delivery_order/delivery_order_grpc_pb.js +33 -0
  34. package/prisca/v1/delivery_order/delivery_order_pb.js +31 -1
  35. package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +33 -0
  36. package/prisca/v1/good_receipt/good_receipt_pb.js +36 -6
  37. package/prisca/v1/invoice/invoice_grpc_pb.js +33 -0
  38. package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +33 -0
  39. package/prisca/v1/purchase_order/purchase_order_pb.js +717 -29
  40. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +35 -0
  41. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +112 -57
  42. package/prisca/v1/quotation/quotation_pb.js +55 -2
  43. package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +0 -123
  44. package/prisca/v1/vendor_domain/vendor_domain_grpc_pb.js +34 -0
  45. package/prisca/v1/vendor_domain/vendor_domain_pb.js +1365 -0
@@ -368,7 +368,8 @@ quotationQuantity: jspb.Message.getFloatingPointFieldWithDefault(msg, 40, 0.0),
368
368
  createdBy: jspb.Message.getFieldWithDefault(msg, 41, ""),
369
369
  updatedBy: jspb.Message.getFieldWithDefault(msg, 42, ""),
370
370
  createdByEmployee: (f = msg.getCreatedByEmployee()) && prisca_v1_core_employee_employee_pb.Employee.toObject(includeInstance, f),
371
- updatedByEmployee: (f = msg.getUpdatedByEmployee()) && prisca_v1_core_employee_employee_pb.Employee.toObject(includeInstance, f)
371
+ updatedByEmployee: (f = msg.getUpdatedByEmployee()) && prisca_v1_core_employee_employee_pb.Employee.toObject(includeInstance, f),
372
+ itemCategory: jspb.Message.getFieldWithDefault(msg, 45, "")
372
373
  };
373
374
 
374
375
  if (includeInstance) {
@@ -583,6 +584,10 @@ proto.ItemTransaction.deserializeBinaryFromReader = function(msg, reader) {
583
584
  reader.readMessage(value,prisca_v1_core_employee_employee_pb.Employee.deserializeBinaryFromReader);
584
585
  msg.setUpdatedByEmployee(value);
585
586
  break;
587
+ case 45:
588
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
589
+ msg.setItemCategory(value);
590
+ break;
586
591
  default:
587
592
  reader.skipField();
588
593
  break;
@@ -919,6 +924,13 @@ proto.ItemTransaction.serializeBinaryToWriter = function(message, writer) {
919
924
  prisca_v1_core_employee_employee_pb.Employee.serializeBinaryToWriter
920
925
  );
921
926
  }
927
+ f = message.getItemCategory();
928
+ if (f.length > 0) {
929
+ writer.writeString(
930
+ 45,
931
+ f
932
+ );
933
+ }
922
934
  };
923
935
 
924
936
 
@@ -1814,6 +1826,24 @@ proto.ItemTransaction.prototype.hasUpdatedByEmployee = function() {
1814
1826
  };
1815
1827
 
1816
1828
 
1829
+ /**
1830
+ * optional string item_category = 45;
1831
+ * @return {string}
1832
+ */
1833
+ proto.ItemTransaction.prototype.getItemCategory = function() {
1834
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 45, ""));
1835
+ };
1836
+
1837
+
1838
+ /**
1839
+ * @param {string} value
1840
+ * @return {!proto.ItemTransaction} returns this
1841
+ */
1842
+ proto.ItemTransaction.prototype.setItemCategory = function(value) {
1843
+ return jspb.Message.setProto3StringField(this, 45, value);
1844
+ };
1845
+
1846
+
1817
1847
 
1818
1848
  /**
1819
1849
  * List of repeated fields within this message type.
@@ -5008,7 +5038,8 @@ purchaseRequisitionQuantity: jspb.Message.getFieldWithDefault(msg, 22, ""),
5008
5038
  purchaseRequisitionPrice: jspb.Message.getFieldWithDefault(msg, 23, ""),
5009
5039
  includeVat: jspb.Message.getBooleanFieldWithDefault(msg, 34, false),
5010
5040
  incomeTax: jspb.Message.getFloatingPointFieldWithDefault(msg, 35, 0.0),
5011
- priceBeforeTax: jspb.Message.getFieldWithDefault(msg, 36, "")
5041
+ priceBeforeTax: jspb.Message.getFieldWithDefault(msg, 36, ""),
5042
+ itemCategory: jspb.Message.getFieldWithDefault(msg, 37, "")
5012
5043
  };
5013
5044
 
5014
5045
  if (includeInstance) {
@@ -5153,6 +5184,10 @@ proto.BaseItemTransaction.deserializeBinaryFromReader = function(msg, reader) {
5153
5184
  var value = /** @type {string} */ (reader.readStringRequireUtf8());
5154
5185
  msg.setPriceBeforeTax(value);
5155
5186
  break;
5187
+ case 37:
5188
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
5189
+ msg.setItemCategory(value);
5190
+ break;
5156
5191
  default:
5157
5192
  reader.skipField();
5158
5193
  break;
@@ -5368,6 +5403,13 @@ proto.BaseItemTransaction.serializeBinaryToWriter = function(message, writer) {
5368
5403
  f
5369
5404
  );
5370
5405
  }
5406
+ f = message.getItemCategory();
5407
+ if (f.length > 0) {
5408
+ writer.writeString(
5409
+ 37,
5410
+ f
5411
+ );
5412
+ }
5371
5413
  };
5372
5414
 
5373
5415
 
@@ -5919,6 +5961,24 @@ proto.BaseItemTransaction.prototype.setPriceBeforeTax = function(value) {
5919
5961
  };
5920
5962
 
5921
5963
 
5964
+ /**
5965
+ * optional string item_category = 37;
5966
+ * @return {string}
5967
+ */
5968
+ proto.BaseItemTransaction.prototype.getItemCategory = function() {
5969
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 37, ""));
5970
+ };
5971
+
5972
+
5973
+ /**
5974
+ * @param {string} value
5975
+ * @return {!proto.BaseItemTransaction} returns this
5976
+ */
5977
+ proto.BaseItemTransaction.prototype.setItemCategory = function(value) {
5978
+ return jspb.Message.setProto3StringField(this, 37, value);
5979
+ };
5980
+
5981
+
5922
5982
 
5923
5983
  /**
5924
5984
  * List of repeated fields within this message type.
@@ -907,8 +907,9 @@ endDate: jspb.Message.getFieldWithDefault(msg, 3, ""),
907
907
  delegateFrom: jspb.Message.getFieldWithDefault(msg, 4, ""),
908
908
  remarks: jspb.Message.getFieldWithDefault(msg, 5, ""),
909
909
  modulesList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
910
- createdAt: jspb.Message.getFieldWithDefault(msg, 7, ""),
911
- updatedAt: jspb.Message.getFieldWithDefault(msg, 8, ""),
910
+ lineOfApprovalDelegationNumber: jspb.Message.getFieldWithDefault(msg, 7, ""),
911
+ createdAt: jspb.Message.getFieldWithDefault(msg, 8, ""),
912
+ updatedAt: jspb.Message.getFieldWithDefault(msg, 9, ""),
912
913
  delegateFromEmployees: (f = msg.getDelegateFromEmployees()) && prisca_v1_core_employee_employee_pb.Employee.toObject(includeInstance, f),
913
914
  createdByUser: (f = msg.getCreatedByUser()) && prisca_v1_global_meta_meta_pb.Creator.toObject(includeInstance, f),
914
915
  updatedByUser: (f = msg.getUpdatedByUser()) && prisca_v1_global_meta_meta_pb.Creator.toObject(includeInstance, f),
@@ -975,28 +976,32 @@ proto.LineOfApprovalDelegation.deserializeBinaryFromReader = function(msg, reade
975
976
  break;
976
977
  case 7:
977
978
  var value = /** @type {string} */ (reader.readStringRequireUtf8());
978
- msg.setCreatedAt(value);
979
+ msg.setLineOfApprovalDelegationNumber(value);
979
980
  break;
980
981
  case 8:
981
982
  var value = /** @type {string} */ (reader.readStringRequireUtf8());
982
- msg.setUpdatedAt(value);
983
+ msg.setCreatedAt(value);
983
984
  break;
984
985
  case 9:
986
+ var value = /** @type {string} */ (reader.readStringRequireUtf8());
987
+ msg.setUpdatedAt(value);
988
+ break;
989
+ case 10:
985
990
  var value = new prisca_v1_core_employee_employee_pb.Employee;
986
991
  reader.readMessage(value,prisca_v1_core_employee_employee_pb.Employee.deserializeBinaryFromReader);
987
992
  msg.setDelegateFromEmployees(value);
988
993
  break;
989
- case 10:
994
+ case 11:
990
995
  var value = new prisca_v1_global_meta_meta_pb.Creator;
991
996
  reader.readMessage(value,prisca_v1_global_meta_meta_pb.Creator.deserializeBinaryFromReader);
992
997
  msg.setCreatedByUser(value);
993
998
  break;
994
- case 11:
999
+ case 12:
995
1000
  var value = new prisca_v1_global_meta_meta_pb.Creator;
996
1001
  reader.readMessage(value,prisca_v1_global_meta_meta_pb.Creator.deserializeBinaryFromReader);
997
1002
  msg.setUpdatedByUser(value);
998
1003
  break;
999
- case 12:
1004
+ case 13:
1000
1005
  var value = new proto.LineOfApprovalDelegationRecipient;
1001
1006
  reader.readMessage(value,proto.LineOfApprovalDelegationRecipient.deserializeBinaryFromReader);
1002
1007
  msg.setLineOfApprovalDelegationRecipients(value);
@@ -1072,24 +1077,31 @@ proto.LineOfApprovalDelegation.serializeBinaryToWriter = function(message, write
1072
1077
  f
1073
1078
  );
1074
1079
  }
1075
- f = message.getCreatedAt();
1080
+ f = message.getLineOfApprovalDelegationNumber();
1076
1081
  if (f.length > 0) {
1077
1082
  writer.writeString(
1078
1083
  7,
1079
1084
  f
1080
1085
  );
1081
1086
  }
1082
- f = message.getUpdatedAt();
1087
+ f = message.getCreatedAt();
1083
1088
  if (f.length > 0) {
1084
1089
  writer.writeString(
1085
1090
  8,
1086
1091
  f
1087
1092
  );
1088
1093
  }
1094
+ f = message.getUpdatedAt();
1095
+ if (f.length > 0) {
1096
+ writer.writeString(
1097
+ 9,
1098
+ f
1099
+ );
1100
+ }
1089
1101
  f = message.getDelegateFromEmployees();
1090
1102
  if (f != null) {
1091
1103
  writer.writeMessage(
1092
- 9,
1104
+ 10,
1093
1105
  f,
1094
1106
  prisca_v1_core_employee_employee_pb.Employee.serializeBinaryToWriter
1095
1107
  );
@@ -1097,7 +1109,7 @@ proto.LineOfApprovalDelegation.serializeBinaryToWriter = function(message, write
1097
1109
  f = message.getCreatedByUser();
1098
1110
  if (f != null) {
1099
1111
  writer.writeMessage(
1100
- 10,
1112
+ 11,
1101
1113
  f,
1102
1114
  prisca_v1_global_meta_meta_pb.Creator.serializeBinaryToWriter
1103
1115
  );
@@ -1105,7 +1117,7 @@ proto.LineOfApprovalDelegation.serializeBinaryToWriter = function(message, write
1105
1117
  f = message.getUpdatedByUser();
1106
1118
  if (f != null) {
1107
1119
  writer.writeMessage(
1108
- 11,
1120
+ 12,
1109
1121
  f,
1110
1122
  prisca_v1_global_meta_meta_pb.Creator.serializeBinaryToWriter
1111
1123
  );
@@ -1113,7 +1125,7 @@ proto.LineOfApprovalDelegation.serializeBinaryToWriter = function(message, write
1113
1125
  f = message.getLineOfApprovalDelegationRecipients();
1114
1126
  if (f != null) {
1115
1127
  writer.writeMessage(
1116
- 12,
1128
+ 13,
1117
1129
  f,
1118
1130
  proto.LineOfApprovalDelegationRecipient.serializeBinaryToWriter
1119
1131
  );
@@ -1249,10 +1261,10 @@ proto.LineOfApprovalDelegation.prototype.clearModulesList = function() {
1249
1261
 
1250
1262
 
1251
1263
  /**
1252
- * optional string created_at = 7;
1264
+ * optional string line_of_approval_delegation_number = 7;
1253
1265
  * @return {string}
1254
1266
  */
1255
- proto.LineOfApprovalDelegation.prototype.getCreatedAt = function() {
1267
+ proto.LineOfApprovalDelegation.prototype.getLineOfApprovalDelegationNumber = function() {
1256
1268
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
1257
1269
  };
1258
1270
 
@@ -1261,16 +1273,16 @@ proto.LineOfApprovalDelegation.prototype.getCreatedAt = function() {
1261
1273
  * @param {string} value
1262
1274
  * @return {!proto.LineOfApprovalDelegation} returns this
1263
1275
  */
1264
- proto.LineOfApprovalDelegation.prototype.setCreatedAt = function(value) {
1276
+ proto.LineOfApprovalDelegation.prototype.setLineOfApprovalDelegationNumber = function(value) {
1265
1277
  return jspb.Message.setProto3StringField(this, 7, value);
1266
1278
  };
1267
1279
 
1268
1280
 
1269
1281
  /**
1270
- * optional string updated_at = 8;
1282
+ * optional string created_at = 8;
1271
1283
  * @return {string}
1272
1284
  */
1273
- proto.LineOfApprovalDelegation.prototype.getUpdatedAt = function() {
1285
+ proto.LineOfApprovalDelegation.prototype.getCreatedAt = function() {
1274
1286
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
1275
1287
  };
1276
1288
 
@@ -1279,18 +1291,36 @@ proto.LineOfApprovalDelegation.prototype.getUpdatedAt = function() {
1279
1291
  * @param {string} value
1280
1292
  * @return {!proto.LineOfApprovalDelegation} returns this
1281
1293
  */
1282
- proto.LineOfApprovalDelegation.prototype.setUpdatedAt = function(value) {
1294
+ proto.LineOfApprovalDelegation.prototype.setCreatedAt = function(value) {
1283
1295
  return jspb.Message.setProto3StringField(this, 8, value);
1284
1296
  };
1285
1297
 
1286
1298
 
1287
1299
  /**
1288
- * optional Employee delegate_from_employees = 9;
1300
+ * optional string updated_at = 9;
1301
+ * @return {string}
1302
+ */
1303
+ proto.LineOfApprovalDelegation.prototype.getUpdatedAt = function() {
1304
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
1305
+ };
1306
+
1307
+
1308
+ /**
1309
+ * @param {string} value
1310
+ * @return {!proto.LineOfApprovalDelegation} returns this
1311
+ */
1312
+ proto.LineOfApprovalDelegation.prototype.setUpdatedAt = function(value) {
1313
+ return jspb.Message.setProto3StringField(this, 9, value);
1314
+ };
1315
+
1316
+
1317
+ /**
1318
+ * optional Employee delegate_from_employees = 10;
1289
1319
  * @return {?proto.Employee}
1290
1320
  */
1291
1321
  proto.LineOfApprovalDelegation.prototype.getDelegateFromEmployees = function() {
1292
1322
  return /** @type{?proto.Employee} */ (
1293
- jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 9));
1323
+ jspb.Message.getWrapperField(this, prisca_v1_core_employee_employee_pb.Employee, 10));
1294
1324
  };
1295
1325
 
1296
1326
 
@@ -1299,7 +1329,7 @@ proto.LineOfApprovalDelegation.prototype.getDelegateFromEmployees = function() {
1299
1329
  * @return {!proto.LineOfApprovalDelegation} returns this
1300
1330
  */
1301
1331
  proto.LineOfApprovalDelegation.prototype.setDelegateFromEmployees = function(value) {
1302
- return jspb.Message.setWrapperField(this, 9, value);
1332
+ return jspb.Message.setWrapperField(this, 10, value);
1303
1333
  };
1304
1334
 
1305
1335
 
@@ -1317,17 +1347,17 @@ proto.LineOfApprovalDelegation.prototype.clearDelegateFromEmployees = function()
1317
1347
  * @return {boolean}
1318
1348
  */
1319
1349
  proto.LineOfApprovalDelegation.prototype.hasDelegateFromEmployees = function() {
1320
- return jspb.Message.getField(this, 9) != null;
1350
+ return jspb.Message.getField(this, 10) != null;
1321
1351
  };
1322
1352
 
1323
1353
 
1324
1354
  /**
1325
- * optional prisca.v1.global.meta.Creator created_by_user = 10;
1355
+ * optional prisca.v1.global.meta.Creator created_by_user = 11;
1326
1356
  * @return {?proto.prisca.v1.global.meta.Creator}
1327
1357
  */
1328
1358
  proto.LineOfApprovalDelegation.prototype.getCreatedByUser = function() {
1329
1359
  return /** @type{?proto.prisca.v1.global.meta.Creator} */ (
1330
- jspb.Message.getWrapperField(this, prisca_v1_global_meta_meta_pb.Creator, 10));
1360
+ jspb.Message.getWrapperField(this, prisca_v1_global_meta_meta_pb.Creator, 11));
1331
1361
  };
1332
1362
 
1333
1363
 
@@ -1336,7 +1366,7 @@ proto.LineOfApprovalDelegation.prototype.getCreatedByUser = function() {
1336
1366
  * @return {!proto.LineOfApprovalDelegation} returns this
1337
1367
  */
1338
1368
  proto.LineOfApprovalDelegation.prototype.setCreatedByUser = function(value) {
1339
- return jspb.Message.setWrapperField(this, 10, value);
1369
+ return jspb.Message.setWrapperField(this, 11, value);
1340
1370
  };
1341
1371
 
1342
1372
 
@@ -1354,17 +1384,17 @@ proto.LineOfApprovalDelegation.prototype.clearCreatedByUser = function() {
1354
1384
  * @return {boolean}
1355
1385
  */
1356
1386
  proto.LineOfApprovalDelegation.prototype.hasCreatedByUser = function() {
1357
- return jspb.Message.getField(this, 10) != null;
1387
+ return jspb.Message.getField(this, 11) != null;
1358
1388
  };
1359
1389
 
1360
1390
 
1361
1391
  /**
1362
- * optional prisca.v1.global.meta.Creator updated_by_user = 11;
1392
+ * optional prisca.v1.global.meta.Creator updated_by_user = 12;
1363
1393
  * @return {?proto.prisca.v1.global.meta.Creator}
1364
1394
  */
1365
1395
  proto.LineOfApprovalDelegation.prototype.getUpdatedByUser = function() {
1366
1396
  return /** @type{?proto.prisca.v1.global.meta.Creator} */ (
1367
- jspb.Message.getWrapperField(this, prisca_v1_global_meta_meta_pb.Creator, 11));
1397
+ jspb.Message.getWrapperField(this, prisca_v1_global_meta_meta_pb.Creator, 12));
1368
1398
  };
1369
1399
 
1370
1400
 
@@ -1373,7 +1403,7 @@ proto.LineOfApprovalDelegation.prototype.getUpdatedByUser = function() {
1373
1403
  * @return {!proto.LineOfApprovalDelegation} returns this
1374
1404
  */
1375
1405
  proto.LineOfApprovalDelegation.prototype.setUpdatedByUser = function(value) {
1376
- return jspb.Message.setWrapperField(this, 11, value);
1406
+ return jspb.Message.setWrapperField(this, 12, value);
1377
1407
  };
1378
1408
 
1379
1409
 
@@ -1391,17 +1421,17 @@ proto.LineOfApprovalDelegation.prototype.clearUpdatedByUser = function() {
1391
1421
  * @return {boolean}
1392
1422
  */
1393
1423
  proto.LineOfApprovalDelegation.prototype.hasUpdatedByUser = function() {
1394
- return jspb.Message.getField(this, 11) != null;
1424
+ return jspb.Message.getField(this, 12) != null;
1395
1425
  };
1396
1426
 
1397
1427
 
1398
1428
  /**
1399
- * optional LineOfApprovalDelegationRecipient line_of_approval_delegation_recipients = 12;
1429
+ * optional LineOfApprovalDelegationRecipient line_of_approval_delegation_recipients = 13;
1400
1430
  * @return {?proto.LineOfApprovalDelegationRecipient}
1401
1431
  */
1402
1432
  proto.LineOfApprovalDelegation.prototype.getLineOfApprovalDelegationRecipients = function() {
1403
1433
  return /** @type{?proto.LineOfApprovalDelegationRecipient} */ (
1404
- jspb.Message.getWrapperField(this, proto.LineOfApprovalDelegationRecipient, 12));
1434
+ jspb.Message.getWrapperField(this, proto.LineOfApprovalDelegationRecipient, 13));
1405
1435
  };
1406
1436
 
1407
1437
 
@@ -1410,7 +1440,7 @@ proto.LineOfApprovalDelegation.prototype.getLineOfApprovalDelegationRecipients =
1410
1440
  * @return {!proto.LineOfApprovalDelegation} returns this
1411
1441
  */
1412
1442
  proto.LineOfApprovalDelegation.prototype.setLineOfApprovalDelegationRecipients = function(value) {
1413
- return jspb.Message.setWrapperField(this, 12, value);
1443
+ return jspb.Message.setWrapperField(this, 13, value);
1414
1444
  };
1415
1445
 
1416
1446
 
@@ -1428,7 +1458,7 @@ proto.LineOfApprovalDelegation.prototype.clearLineOfApprovalDelegationRecipients
1428
1458
  * @return {boolean}
1429
1459
  */
1430
1460
  proto.LineOfApprovalDelegation.prototype.hasLineOfApprovalDelegationRecipients = function() {
1431
- return jspb.Message.getField(this, 12) != null;
1461
+ return jspb.Message.getField(this, 13) != null;
1432
1462
  };
1433
1463
 
1434
1464
 
@@ -9,6 +9,8 @@ var prisca_v1_core_material_group_material_group_pb = require('../../../../prisc
9
9
  var prisca_v1_core_work_location_work_location_pb = require('../../../../prisca/v1/core/work_location/work_location_pb.js');
10
10
  var prisca_v1_core_unit_of_measurement_unit_of_measurement_pb = require('../../../../prisca/v1/core/unit_of_measurement/unit_of_measurement_pb.js');
11
11
  var prisca_v1_core_employee_employee_pb = require('../../../../prisca/v1/core/employee/employee_pb.js');
12
+ var prisca_v1_core_currency_currency_pb = require('../../../../prisca/v1/core/currency/currency_pb.js');
13
+ var prisca_v1_core_commodity_commodity_pb = require('../../../../prisca/v1/core/commodity/commodity_pb.js');
12
14
 
13
15
  function serialize_CreateMaterialRequest(arg) {
14
16
  if (!(arg instanceof prisca_v1_core_material_material_pb.CreateMaterialRequest)) {