@sniipwebmaster/payroll-service-client-grpcweb 25.11.710 → 25.11.722

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.
@@ -4589,8 +4589,9 @@ proto.payrollserviceapi.BusinessCountsDetails.toObject = function(includeInstanc
4589
4589
  name: jspb.Message.getFieldWithDefault(msg, 2, ""),
4590
4590
  status: jspb.Message.getFieldWithDefault(msg, 3, 0),
4591
4591
  totalemployees: jspb.Message.getFieldWithDefault(msg, 4, 0),
4592
- totalunpaidbatches: jspb.Message.getFieldWithDefault(msg, 5, 0),
4593
- totalpaidbatches: jspb.Message.getFieldWithDefault(msg, 6, 0)
4592
+ totaluploadbatches: jspb.Message.getFieldWithDefault(msg, 5, 0),
4593
+ totalsentbatches: jspb.Message.getFieldWithDefault(msg, 6, 0),
4594
+ totalpaidbatches: jspb.Message.getFieldWithDefault(msg, 7, 0)
4594
4595
  };
4595
4596
 
4596
4597
  if (includeInstance) {
@@ -4645,9 +4646,13 @@ proto.payrollserviceapi.BusinessCountsDetails.deserializeBinaryFromReader = func
4645
4646
  break;
4646
4647
  case 5:
4647
4648
  var value = /** @type {number} */ (reader.readInt32());
4648
- msg.setTotalunpaidbatches(value);
4649
+ msg.setTotaluploadbatches(value);
4649
4650
  break;
4650
4651
  case 6:
4652
+ var value = /** @type {number} */ (reader.readInt32());
4653
+ msg.setTotalsentbatches(value);
4654
+ break;
4655
+ case 7:
4651
4656
  var value = /** @type {number} */ (reader.readInt32());
4652
4657
  msg.setTotalpaidbatches(value);
4653
4658
  break;
@@ -4708,20 +4713,27 @@ proto.payrollserviceapi.BusinessCountsDetails.serializeBinaryToWriter = function
4708
4713
  f
4709
4714
  );
4710
4715
  }
4711
- f = message.getTotalunpaidbatches();
4716
+ f = message.getTotaluploadbatches();
4712
4717
  if (f !== 0) {
4713
4718
  writer.writeInt32(
4714
4719
  5,
4715
4720
  f
4716
4721
  );
4717
4722
  }
4718
- f = message.getTotalpaidbatches();
4723
+ f = message.getTotalsentbatches();
4719
4724
  if (f !== 0) {
4720
4725
  writer.writeInt32(
4721
4726
  6,
4722
4727
  f
4723
4728
  );
4724
4729
  }
4730
+ f = message.getTotalpaidbatches();
4731
+ if (f !== 0) {
4732
+ writer.writeInt32(
4733
+ 7,
4734
+ f
4735
+ );
4736
+ }
4725
4737
  };
4726
4738
 
4727
4739
 
@@ -4798,10 +4810,10 @@ proto.payrollserviceapi.BusinessCountsDetails.prototype.setTotalemployees = func
4798
4810
 
4799
4811
 
4800
4812
  /**
4801
- * optional int32 totalUnpaidBatches = 5;
4813
+ * optional int32 totalUploadBatches = 5;
4802
4814
  * @return {number}
4803
4815
  */
4804
- proto.payrollserviceapi.BusinessCountsDetails.prototype.getTotalunpaidbatches = function() {
4816
+ proto.payrollserviceapi.BusinessCountsDetails.prototype.getTotaluploadbatches = function() {
4805
4817
  return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
4806
4818
  };
4807
4819
 
@@ -4810,16 +4822,16 @@ proto.payrollserviceapi.BusinessCountsDetails.prototype.getTotalunpaidbatches =
4810
4822
  * @param {number} value
4811
4823
  * @return {!proto.payrollserviceapi.BusinessCountsDetails} returns this
4812
4824
  */
4813
- proto.payrollserviceapi.BusinessCountsDetails.prototype.setTotalunpaidbatches = function(value) {
4825
+ proto.payrollserviceapi.BusinessCountsDetails.prototype.setTotaluploadbatches = function(value) {
4814
4826
  return jspb.Message.setProto3IntField(this, 5, value);
4815
4827
  };
4816
4828
 
4817
4829
 
4818
4830
  /**
4819
- * optional int32 totalPaidBatches = 6;
4831
+ * optional int32 totalSentBatches = 6;
4820
4832
  * @return {number}
4821
4833
  */
4822
- proto.payrollserviceapi.BusinessCountsDetails.prototype.getTotalpaidbatches = function() {
4834
+ proto.payrollserviceapi.BusinessCountsDetails.prototype.getTotalsentbatches = function() {
4823
4835
  return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
4824
4836
  };
4825
4837
 
@@ -4828,11 +4840,29 @@ proto.payrollserviceapi.BusinessCountsDetails.prototype.getTotalpaidbatches = fu
4828
4840
  * @param {number} value
4829
4841
  * @return {!proto.payrollserviceapi.BusinessCountsDetails} returns this
4830
4842
  */
4831
- proto.payrollserviceapi.BusinessCountsDetails.prototype.setTotalpaidbatches = function(value) {
4843
+ proto.payrollserviceapi.BusinessCountsDetails.prototype.setTotalsentbatches = function(value) {
4832
4844
  return jspb.Message.setProto3IntField(this, 6, value);
4833
4845
  };
4834
4846
 
4835
4847
 
4848
+ /**
4849
+ * optional int32 totalPaidBatches = 7;
4850
+ * @return {number}
4851
+ */
4852
+ proto.payrollserviceapi.BusinessCountsDetails.prototype.getTotalpaidbatches = function() {
4853
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
4854
+ };
4855
+
4856
+
4857
+ /**
4858
+ * @param {number} value
4859
+ * @return {!proto.payrollserviceapi.BusinessCountsDetails} returns this
4860
+ */
4861
+ proto.payrollserviceapi.BusinessCountsDetails.prototype.setTotalpaidbatches = function(value) {
4862
+ return jspb.Message.setProto3IntField(this, 7, value);
4863
+ };
4864
+
4865
+
4836
4866
 
4837
4867
  /**
4838
4868
  * List of repeated fields within this message type.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/payroll-service-client-grpcweb",
3
- "version": "25.11.710",
3
+ "version": "25.11.722",
4
4
  "description": "payroll-service-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",