@sniipwebmaster/payroll-service-client-grpcweb 25.10.522 → 25.10.528

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.
@@ -7227,7 +7227,9 @@ proto.payrollserviceapi.GetABAFileRecordsRequest.toObject = function(includeInst
7227
7227
  var f, obj = {
7228
7228
  abaFileId: jspb.Message.getFieldWithDefault(msg, 1, 0),
7229
7229
  businessId: jspb.Message.getFieldWithDefault(msg, 2, 0),
7230
- clientUserId: jspb.Message.getFieldWithDefault(msg, 4, 0)
7230
+ clientUserId: jspb.Message.getFieldWithDefault(msg, 4, 0),
7231
+ page: jspb.Message.getFieldWithDefault(msg, 5, 0),
7232
+ limit: jspb.Message.getFieldWithDefault(msg, 6, 0)
7231
7233
  };
7232
7234
 
7233
7235
  if (includeInstance) {
@@ -7276,6 +7278,14 @@ proto.payrollserviceapi.GetABAFileRecordsRequest.deserializeBinaryFromReader = f
7276
7278
  var value = /** @type {number} */ (reader.readInt64());
7277
7279
  msg.setClientUserId(value);
7278
7280
  break;
7281
+ case 5:
7282
+ var value = /** @type {number} */ (reader.readInt32());
7283
+ msg.setPage(value);
7284
+ break;
7285
+ case 6:
7286
+ var value = /** @type {number} */ (reader.readInt32());
7287
+ msg.setLimit(value);
7288
+ break;
7279
7289
  default:
7280
7290
  reader.skipField();
7281
7291
  break;
@@ -7326,6 +7336,20 @@ proto.payrollserviceapi.GetABAFileRecordsRequest.serializeBinaryToWriter = funct
7326
7336
  f
7327
7337
  );
7328
7338
  }
7339
+ f = message.getPage();
7340
+ if (f !== 0) {
7341
+ writer.writeInt32(
7342
+ 5,
7343
+ f
7344
+ );
7345
+ }
7346
+ f = message.getLimit();
7347
+ if (f !== 0) {
7348
+ writer.writeInt32(
7349
+ 6,
7350
+ f
7351
+ );
7352
+ }
7329
7353
  };
7330
7354
 
7331
7355
 
@@ -7383,6 +7407,42 @@ proto.payrollserviceapi.GetABAFileRecordsRequest.prototype.setClientUserId = fun
7383
7407
  };
7384
7408
 
7385
7409
 
7410
+ /**
7411
+ * optional int32 page = 5;
7412
+ * @return {number}
7413
+ */
7414
+ proto.payrollserviceapi.GetABAFileRecordsRequest.prototype.getPage = function() {
7415
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
7416
+ };
7417
+
7418
+
7419
+ /**
7420
+ * @param {number} value
7421
+ * @return {!proto.payrollserviceapi.GetABAFileRecordsRequest} returns this
7422
+ */
7423
+ proto.payrollserviceapi.GetABAFileRecordsRequest.prototype.setPage = function(value) {
7424
+ return jspb.Message.setProto3IntField(this, 5, value);
7425
+ };
7426
+
7427
+
7428
+ /**
7429
+ * optional int32 limit = 6;
7430
+ * @return {number}
7431
+ */
7432
+ proto.payrollserviceapi.GetABAFileRecordsRequest.prototype.getLimit = function() {
7433
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
7434
+ };
7435
+
7436
+
7437
+ /**
7438
+ * @param {number} value
7439
+ * @return {!proto.payrollserviceapi.GetABAFileRecordsRequest} returns this
7440
+ */
7441
+ proto.payrollserviceapi.GetABAFileRecordsRequest.prototype.setLimit = function(value) {
7442
+ return jspb.Message.setProto3IntField(this, 6, value);
7443
+ };
7444
+
7445
+
7386
7446
 
7387
7447
  /**
7388
7448
  * List of repeated fields within this message type.
@@ -7424,7 +7484,11 @@ proto.payrollserviceapi.GetABAFileRecordsResponse.toObject = function(includeIns
7424
7484
  var f, obj = {
7425
7485
  responsecode: (f = msg.getResponsecode()) && proto.payrollserviceapi.ResponseCode.toObject(includeInstance, f),
7426
7486
  recordsList: jspb.Message.toObjectList(msg.getRecordsList(),
7427
- proto.payrollserviceapi.ABARecordDetail.toObject, includeInstance)
7487
+ proto.payrollserviceapi.ABARecordDetail.toObject, includeInstance),
7488
+ totalCount: jspb.Message.getFieldWithDefault(msg, 3, 0),
7489
+ page: jspb.Message.getFieldWithDefault(msg, 4, 0),
7490
+ limit: jspb.Message.getFieldWithDefault(msg, 5, 0),
7491
+ message: jspb.Message.getFieldWithDefault(msg, 6, "")
7428
7492
  };
7429
7493
 
7430
7494
  if (includeInstance) {
@@ -7471,6 +7535,22 @@ proto.payrollserviceapi.GetABAFileRecordsResponse.deserializeBinaryFromReader =
7471
7535
  reader.readMessage(value,proto.payrollserviceapi.ABARecordDetail.deserializeBinaryFromReader);
7472
7536
  msg.addRecords(value);
7473
7537
  break;
7538
+ case 3:
7539
+ var value = /** @type {number} */ (reader.readInt32());
7540
+ msg.setTotalCount(value);
7541
+ break;
7542
+ case 4:
7543
+ var value = /** @type {number} */ (reader.readInt32());
7544
+ msg.setPage(value);
7545
+ break;
7546
+ case 5:
7547
+ var value = /** @type {number} */ (reader.readInt32());
7548
+ msg.setLimit(value);
7549
+ break;
7550
+ case 6:
7551
+ var value = /** @type {string} */ (reader.readString());
7552
+ msg.setMessage(value);
7553
+ break;
7474
7554
  default:
7475
7555
  reader.skipField();
7476
7556
  break;
@@ -7516,6 +7596,34 @@ proto.payrollserviceapi.GetABAFileRecordsResponse.serializeBinaryToWriter = func
7516
7596
  proto.payrollserviceapi.ABARecordDetail.serializeBinaryToWriter
7517
7597
  );
7518
7598
  }
7599
+ f = message.getTotalCount();
7600
+ if (f !== 0) {
7601
+ writer.writeInt32(
7602
+ 3,
7603
+ f
7604
+ );
7605
+ }
7606
+ f = message.getPage();
7607
+ if (f !== 0) {
7608
+ writer.writeInt32(
7609
+ 4,
7610
+ f
7611
+ );
7612
+ }
7613
+ f = message.getLimit();
7614
+ if (f !== 0) {
7615
+ writer.writeInt32(
7616
+ 5,
7617
+ f
7618
+ );
7619
+ }
7620
+ f = message.getMessage();
7621
+ if (f.length > 0) {
7622
+ writer.writeString(
7623
+ 6,
7624
+ f
7625
+ );
7626
+ }
7519
7627
  };
7520
7628
 
7521
7629
 
@@ -7594,6 +7702,78 @@ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.clearRecordsList = f
7594
7702
  };
7595
7703
 
7596
7704
 
7705
+ /**
7706
+ * optional int32 total_count = 3;
7707
+ * @return {number}
7708
+ */
7709
+ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.getTotalCount = function() {
7710
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
7711
+ };
7712
+
7713
+
7714
+ /**
7715
+ * @param {number} value
7716
+ * @return {!proto.payrollserviceapi.GetABAFileRecordsResponse} returns this
7717
+ */
7718
+ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.setTotalCount = function(value) {
7719
+ return jspb.Message.setProto3IntField(this, 3, value);
7720
+ };
7721
+
7722
+
7723
+ /**
7724
+ * optional int32 page = 4;
7725
+ * @return {number}
7726
+ */
7727
+ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.getPage = function() {
7728
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
7729
+ };
7730
+
7731
+
7732
+ /**
7733
+ * @param {number} value
7734
+ * @return {!proto.payrollserviceapi.GetABAFileRecordsResponse} returns this
7735
+ */
7736
+ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.setPage = function(value) {
7737
+ return jspb.Message.setProto3IntField(this, 4, value);
7738
+ };
7739
+
7740
+
7741
+ /**
7742
+ * optional int32 limit = 5;
7743
+ * @return {number}
7744
+ */
7745
+ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.getLimit = function() {
7746
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
7747
+ };
7748
+
7749
+
7750
+ /**
7751
+ * @param {number} value
7752
+ * @return {!proto.payrollserviceapi.GetABAFileRecordsResponse} returns this
7753
+ */
7754
+ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.setLimit = function(value) {
7755
+ return jspb.Message.setProto3IntField(this, 5, value);
7756
+ };
7757
+
7758
+
7759
+ /**
7760
+ * optional string message = 6;
7761
+ * @return {string}
7762
+ */
7763
+ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.getMessage = function() {
7764
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
7765
+ };
7766
+
7767
+
7768
+ /**
7769
+ * @param {string} value
7770
+ * @return {!proto.payrollserviceapi.GetABAFileRecordsResponse} returns this
7771
+ */
7772
+ proto.payrollserviceapi.GetABAFileRecordsResponse.prototype.setMessage = function(value) {
7773
+ return jspb.Message.setProto3StringField(this, 6, value);
7774
+ };
7775
+
7776
+
7597
7777
 
7598
7778
 
7599
7779
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/payroll-service-client-grpcweb",
3
- "version": "25.10.522",
3
+ "version": "25.10.528",
4
4
  "description": "payroll-service-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",