@sniipwebmaster/biller-service-client-grpcweb 25.6.8700 → 25.6.8716
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 +61 -1
- package/package.json +1 -1
|
@@ -20496,7 +20496,9 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.toObject = function(includeInstanc
|
|
|
20496
20496
|
userstatussafe: jspb.Message.getBooleanFieldWithDefault(msg, 29, false),
|
|
20497
20497
|
validationscore: jspb.Message.getFieldWithDefault(msg, 30, 0),
|
|
20498
20498
|
organisationdetailschecked: jspb.Message.getBooleanFieldWithDefault(msg, 31, false),
|
|
20499
|
-
bankaccountnameoverride: jspb.Message.getFieldWithDefault(msg, 32, "")
|
|
20499
|
+
bankaccountnameoverride: jspb.Message.getFieldWithDefault(msg, 32, ""),
|
|
20500
|
+
validationtext: jspb.Message.getFieldWithDefault(msg, 33, ""),
|
|
20501
|
+
validationtextdetails: jspb.Message.getFieldWithDefault(msg, 34, "")
|
|
20500
20502
|
};
|
|
20501
20503
|
|
|
20502
20504
|
if (includeInstance) {
|
|
@@ -20662,6 +20664,14 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.deserializeBinaryFromReader = func
|
|
|
20662
20664
|
var value = /** @type {string} */ (reader.readString());
|
|
20663
20665
|
msg.setBankaccountnameoverride(value);
|
|
20664
20666
|
break;
|
|
20667
|
+
case 33:
|
|
20668
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20669
|
+
msg.setValidationtext(value);
|
|
20670
|
+
break;
|
|
20671
|
+
case 34:
|
|
20672
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20673
|
+
msg.setValidationtextdetails(value);
|
|
20674
|
+
break;
|
|
20665
20675
|
default:
|
|
20666
20676
|
reader.skipField();
|
|
20667
20677
|
break;
|
|
@@ -20916,6 +20926,20 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.serializeBinaryToWriter = function
|
|
|
20916
20926
|
f
|
|
20917
20927
|
);
|
|
20918
20928
|
}
|
|
20929
|
+
f = message.getValidationtext();
|
|
20930
|
+
if (f.length > 0) {
|
|
20931
|
+
writer.writeString(
|
|
20932
|
+
33,
|
|
20933
|
+
f
|
|
20934
|
+
);
|
|
20935
|
+
}
|
|
20936
|
+
f = message.getValidationtextdetails();
|
|
20937
|
+
if (f.length > 0) {
|
|
20938
|
+
writer.writeString(
|
|
20939
|
+
34,
|
|
20940
|
+
f
|
|
20941
|
+
);
|
|
20942
|
+
}
|
|
20919
20943
|
};
|
|
20920
20944
|
|
|
20921
20945
|
|
|
@@ -21532,6 +21556,42 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setBankaccountnameoverri
|
|
|
21532
21556
|
};
|
|
21533
21557
|
|
|
21534
21558
|
|
|
21559
|
+
/**
|
|
21560
|
+
* optional string validationText = 33;
|
|
21561
|
+
* @return {string}
|
|
21562
|
+
*/
|
|
21563
|
+
proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getValidationtext = function() {
|
|
21564
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 33, ""));
|
|
21565
|
+
};
|
|
21566
|
+
|
|
21567
|
+
|
|
21568
|
+
/**
|
|
21569
|
+
* @param {string} value
|
|
21570
|
+
* @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
|
|
21571
|
+
*/
|
|
21572
|
+
proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setValidationtext = function(value) {
|
|
21573
|
+
return jspb.Message.setProto3StringField(this, 33, value);
|
|
21574
|
+
};
|
|
21575
|
+
|
|
21576
|
+
|
|
21577
|
+
/**
|
|
21578
|
+
* optional string validationTextDetails = 34;
|
|
21579
|
+
* @return {string}
|
|
21580
|
+
*/
|
|
21581
|
+
proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getValidationtextdetails = function() {
|
|
21582
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 34, ""));
|
|
21583
|
+
};
|
|
21584
|
+
|
|
21585
|
+
|
|
21586
|
+
/**
|
|
21587
|
+
* @param {string} value
|
|
21588
|
+
* @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
|
|
21589
|
+
*/
|
|
21590
|
+
proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setValidationtextdetails = function(value) {
|
|
21591
|
+
return jspb.Message.setProto3StringField(this, 34, value);
|
|
21592
|
+
};
|
|
21593
|
+
|
|
21594
|
+
|
|
21535
21595
|
|
|
21536
21596
|
|
|
21537
21597
|
|