@sniipwebmaster/biller-service-client-grpcweb 23.3.5626 → 23.4.5644
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 +30 -1
- package/package.json +1 -1
|
@@ -25521,7 +25521,8 @@ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.toObject = fun
|
|
|
25521
25521
|
*/
|
|
25522
25522
|
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.toObject = function(includeInstance, msg) {
|
|
25523
25523
|
var f, obj = {
|
|
25524
|
-
billerconfigidsList: jspb.Message.getField(msg, 1)
|
|
25524
|
+
billerconfigidsList: jspb.Message.getField(msg, 1),
|
|
25525
|
+
includeallconfigs: msg.getIncludeallconfigs()
|
|
25525
25526
|
};
|
|
25526
25527
|
|
|
25527
25528
|
if (includeInstance) {
|
|
@@ -25562,6 +25563,10 @@ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.deserializeBinaryFromRea
|
|
|
25562
25563
|
var value = /** @type {!Array.<number>} */ (reader.readPackedInt64());
|
|
25563
25564
|
msg.setBillerconfigidsList(value);
|
|
25564
25565
|
break;
|
|
25566
|
+
case 2:
|
|
25567
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
25568
|
+
msg.setIncludeallconfigs(value);
|
|
25569
|
+
break;
|
|
25565
25570
|
default:
|
|
25566
25571
|
reader.skipField();
|
|
25567
25572
|
break;
|
|
@@ -25607,6 +25612,13 @@ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.serializeBinar
|
|
|
25607
25612
|
f
|
|
25608
25613
|
);
|
|
25609
25614
|
}
|
|
25615
|
+
f = this.getIncludeallconfigs();
|
|
25616
|
+
if (f) {
|
|
25617
|
+
writer.writeBool(
|
|
25618
|
+
2,
|
|
25619
|
+
f
|
|
25620
|
+
);
|
|
25621
|
+
}
|
|
25610
25622
|
};
|
|
25611
25623
|
|
|
25612
25624
|
|
|
@@ -25641,6 +25653,23 @@ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.clearBillercon
|
|
|
25641
25653
|
};
|
|
25642
25654
|
|
|
25643
25655
|
|
|
25656
|
+
/**
|
|
25657
|
+
* optional bool includeAllConfigs = 2;
|
|
25658
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
25659
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
25660
|
+
* @return {boolean}
|
|
25661
|
+
*/
|
|
25662
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.getIncludeallconfigs = function() {
|
|
25663
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 2, false));
|
|
25664
|
+
};
|
|
25665
|
+
|
|
25666
|
+
|
|
25667
|
+
/** @param {boolean} value */
|
|
25668
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.setIncludeallconfigs = function(value) {
|
|
25669
|
+
jspb.Message.setField(this, 2, value);
|
|
25670
|
+
};
|
|
25671
|
+
|
|
25672
|
+
|
|
25644
25673
|
|
|
25645
25674
|
/**
|
|
25646
25675
|
* Generated by JsPbCodeGenerator.
|