@sniipwebmaster/realtime-message-client-grpcweb 24.7.612 → 24.7.620
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.
- package/dependancies/service_pb.js +31 -1
- package/package.json +1 -1
|
@@ -4324,7 +4324,8 @@ proto.realtimemessageapi.BulkPaymentSummary.toObject = function(includeInstance,
|
|
|
4324
4324
|
tasksList: jspb.Message.toObjectList(msg.getTasksList(),
|
|
4325
4325
|
proto.realtimemessageapi.BulkPaymentTaskSummary.toObject, includeInstance),
|
|
4326
4326
|
isforscheduledpayments: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
4327
|
-
isforbankaccount: jspb.Message.getBooleanFieldWithDefault(msg, 4, false)
|
|
4327
|
+
isforbankaccount: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
4328
|
+
deliverybatchid: jspb.Message.getFieldWithDefault(msg, 5, 0)
|
|
4328
4329
|
};
|
|
4329
4330
|
|
|
4330
4331
|
if (includeInstance) {
|
|
@@ -4378,6 +4379,10 @@ proto.realtimemessageapi.BulkPaymentSummary.deserializeBinaryFromReader = functi
|
|
|
4378
4379
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
4379
4380
|
msg.setIsforbankaccount(value);
|
|
4380
4381
|
break;
|
|
4382
|
+
case 5:
|
|
4383
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
4384
|
+
msg.setDeliverybatchid(value);
|
|
4385
|
+
break;
|
|
4381
4386
|
default:
|
|
4382
4387
|
reader.skipField();
|
|
4383
4388
|
break;
|
|
@@ -4436,6 +4441,13 @@ proto.realtimemessageapi.BulkPaymentSummary.serializeBinaryToWriter = function(m
|
|
|
4436
4441
|
f
|
|
4437
4442
|
);
|
|
4438
4443
|
}
|
|
4444
|
+
f = message.getDeliverybatchid();
|
|
4445
|
+
if (f !== 0) {
|
|
4446
|
+
writer.writeInt64(
|
|
4447
|
+
5,
|
|
4448
|
+
f
|
|
4449
|
+
);
|
|
4450
|
+
}
|
|
4439
4451
|
};
|
|
4440
4452
|
|
|
4441
4453
|
|
|
@@ -4531,6 +4543,24 @@ proto.realtimemessageapi.BulkPaymentSummary.prototype.setIsforbankaccount = func
|
|
|
4531
4543
|
};
|
|
4532
4544
|
|
|
4533
4545
|
|
|
4546
|
+
/**
|
|
4547
|
+
* optional int64 deliveryBatchId = 5;
|
|
4548
|
+
* @return {number}
|
|
4549
|
+
*/
|
|
4550
|
+
proto.realtimemessageapi.BulkPaymentSummary.prototype.getDeliverybatchid = function() {
|
|
4551
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
4552
|
+
};
|
|
4553
|
+
|
|
4554
|
+
|
|
4555
|
+
/**
|
|
4556
|
+
* @param {number} value
|
|
4557
|
+
* @return {!proto.realtimemessageapi.BulkPaymentSummary} returns this
|
|
4558
|
+
*/
|
|
4559
|
+
proto.realtimemessageapi.BulkPaymentSummary.prototype.setDeliverybatchid = function(value) {
|
|
4560
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
|
4561
|
+
};
|
|
4562
|
+
|
|
4563
|
+
|
|
4534
4564
|
|
|
4535
4565
|
|
|
4536
4566
|
|