@sniipwebmaster/realtime-message-client-grpcweb 22.11.383 → 22.14.406
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 +28 -1
- package/package.json +1 -1
|
@@ -3770,7 +3770,8 @@ proto.realtimemessageapi.BannersResponse.toObject = function(includeInstance, ms
|
|
|
3770
3770
|
responsecode: (f = msg.getResponsecode()) && proto.realtimemessageapi.ResponseCode.toObject(includeInstance, f),
|
|
3771
3771
|
bulkpaymentsList: jspb.Message.toObjectList(msg.getBulkpaymentsList(),
|
|
3772
3772
|
proto.realtimemessageapi.BulkPaymentSummary.toObject, includeInstance),
|
|
3773
|
-
billsarebeingprocessed: msg.getBillsarebeingprocessed()
|
|
3773
|
+
billsarebeingprocessed: msg.getBillsarebeingprocessed(),
|
|
3774
|
+
totalbillsbeingprocessed: msg.getTotalbillsbeingprocessed()
|
|
3774
3775
|
};
|
|
3775
3776
|
|
|
3776
3777
|
if (includeInstance) {
|
|
@@ -3822,6 +3823,10 @@ proto.realtimemessageapi.BannersResponse.deserializeBinaryFromReader = function(
|
|
|
3822
3823
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
3823
3824
|
msg.setBillsarebeingprocessed(value);
|
|
3824
3825
|
break;
|
|
3826
|
+
case 4:
|
|
3827
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
3828
|
+
msg.setTotalbillsbeingprocessed(value);
|
|
3829
|
+
break;
|
|
3825
3830
|
default:
|
|
3826
3831
|
reader.skipField();
|
|
3827
3832
|
break;
|
|
@@ -3883,6 +3888,13 @@ proto.realtimemessageapi.BannersResponse.prototype.serializeBinaryToWriter = fun
|
|
|
3883
3888
|
f
|
|
3884
3889
|
);
|
|
3885
3890
|
}
|
|
3891
|
+
f = this.getTotalbillsbeingprocessed();
|
|
3892
|
+
if (f !== 0) {
|
|
3893
|
+
writer.writeInt32(
|
|
3894
|
+
4,
|
|
3895
|
+
f
|
|
3896
|
+
);
|
|
3897
|
+
}
|
|
3886
3898
|
};
|
|
3887
3899
|
|
|
3888
3900
|
|
|
@@ -3965,6 +3977,21 @@ proto.realtimemessageapi.BannersResponse.prototype.setBillsarebeingprocessed = f
|
|
|
3965
3977
|
};
|
|
3966
3978
|
|
|
3967
3979
|
|
|
3980
|
+
/**
|
|
3981
|
+
* optional int32 totalBillsBeingProcessed = 4;
|
|
3982
|
+
* @return {number}
|
|
3983
|
+
*/
|
|
3984
|
+
proto.realtimemessageapi.BannersResponse.prototype.getTotalbillsbeingprocessed = function() {
|
|
3985
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 4, 0));
|
|
3986
|
+
};
|
|
3987
|
+
|
|
3988
|
+
|
|
3989
|
+
/** @param {number} value */
|
|
3990
|
+
proto.realtimemessageapi.BannersResponse.prototype.setTotalbillsbeingprocessed = function(value) {
|
|
3991
|
+
jspb.Message.setField(this, 4, value);
|
|
3992
|
+
};
|
|
3993
|
+
|
|
3994
|
+
|
|
3968
3995
|
|
|
3969
3996
|
/**
|
|
3970
3997
|
* Generated by JsPbCodeGenerator.
|