@sniipwebmaster/config-service-client-grpcweb 26.4.2317 → 26.4.2337
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
|
@@ -4762,7 +4762,8 @@ proto.sniipappappconfigapi.BusinessRules.prototype.toObject = function(opt_inclu
|
|
|
4762
4762
|
proto.sniipappappconfigapi.BusinessRules.toObject = function(includeInstance, msg) {
|
|
4763
4763
|
var f, obj = {
|
|
4764
4764
|
abaallowedcharacters: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
4765
|
-
abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : []
|
|
4765
|
+
abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
4766
|
+
paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
|
|
4766
4767
|
};
|
|
4767
4768
|
|
|
4768
4769
|
if (includeInstance) {
|
|
@@ -4809,6 +4810,10 @@ proto.sniipappappconfigapi.BusinessRules.deserializeBinaryFromReader = function(
|
|
|
4809
4810
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
4810
4811
|
});
|
|
4811
4812
|
break;
|
|
4813
|
+
case 3:
|
|
4814
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
4815
|
+
msg.setPaytobankaccountsenabled(value);
|
|
4816
|
+
break;
|
|
4812
4817
|
default:
|
|
4813
4818
|
reader.skipField();
|
|
4814
4819
|
break;
|
|
@@ -4849,6 +4854,13 @@ proto.sniipappappconfigapi.BusinessRules.serializeBinaryToWriter = function(mess
|
|
|
4849
4854
|
if (f && f.getLength() > 0) {
|
|
4850
4855
|
f.serializeBinary(2, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
4851
4856
|
}
|
|
4857
|
+
f = message.getPaytobankaccountsenabled();
|
|
4858
|
+
if (f) {
|
|
4859
|
+
writer.writeBool(
|
|
4860
|
+
3,
|
|
4861
|
+
f
|
|
4862
|
+
);
|
|
4863
|
+
}
|
|
4852
4864
|
};
|
|
4853
4865
|
|
|
4854
4866
|
|
|
@@ -4892,6 +4904,24 @@ proto.sniipappappconfigapi.BusinessRules.prototype.clearAbacharacternormalisatio
|
|
|
4892
4904
|
return this;};
|
|
4893
4905
|
|
|
4894
4906
|
|
|
4907
|
+
/**
|
|
4908
|
+
* optional bool payToBankAccountsEnabled = 3;
|
|
4909
|
+
* @return {boolean}
|
|
4910
|
+
*/
|
|
4911
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.getPaytobankaccountsenabled = function() {
|
|
4912
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
4913
|
+
};
|
|
4914
|
+
|
|
4915
|
+
|
|
4916
|
+
/**
|
|
4917
|
+
* @param {boolean} value
|
|
4918
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
4919
|
+
*/
|
|
4920
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.setPaytobankaccountsenabled = function(value) {
|
|
4921
|
+
return jspb.Message.setProto3BooleanField(this, 3, value);
|
|
4922
|
+
};
|
|
4923
|
+
|
|
4924
|
+
|
|
4895
4925
|
|
|
4896
4926
|
|
|
4897
4927
|
|