@sniipwebmaster/biller-service-client-grpcweb 25.2.8299 → 25.2.8318
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
|
@@ -46971,7 +46971,8 @@ proto.sniipbillerapi.UpdateSmeBillerConfigInternalRequest.toObject = function(in
|
|
|
46971
46971
|
isapproved: jspb.Message.getBooleanFieldWithDefault(msg, 11, false),
|
|
46972
46972
|
partialpaymentpermitted: jspb.Message.getBooleanFieldWithDefault(msg, 12, false),
|
|
46973
46973
|
userid: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
46974
|
-
createdbybillconfigid: jspb.Message.getFieldWithDefault(msg, 14, 0)
|
|
46974
|
+
createdbybillconfigid: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
46975
|
+
bankaccountnameoverride: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
46975
46976
|
};
|
|
46976
46977
|
|
|
46977
46978
|
if (includeInstance) {
|
|
@@ -47064,6 +47065,10 @@ proto.sniipbillerapi.UpdateSmeBillerConfigInternalRequest.deserializeBinaryFromR
|
|
|
47064
47065
|
var value = /** @type {number} */ (reader.readInt64());
|
|
47065
47066
|
msg.setCreatedbybillconfigid(value);
|
|
47066
47067
|
break;
|
|
47068
|
+
case 15:
|
|
47069
|
+
var value = /** @type {string} */ (reader.readString());
|
|
47070
|
+
msg.setBankaccountnameoverride(value);
|
|
47071
|
+
break;
|
|
47067
47072
|
default:
|
|
47068
47073
|
reader.skipField();
|
|
47069
47074
|
break;
|
|
@@ -47191,6 +47196,13 @@ proto.sniipbillerapi.UpdateSmeBillerConfigInternalRequest.serializeBinaryToWrite
|
|
|
47191
47196
|
f
|
|
47192
47197
|
);
|
|
47193
47198
|
}
|
|
47199
|
+
f = message.getBankaccountnameoverride();
|
|
47200
|
+
if (f.length > 0) {
|
|
47201
|
+
writer.writeString(
|
|
47202
|
+
15,
|
|
47203
|
+
f
|
|
47204
|
+
);
|
|
47205
|
+
}
|
|
47194
47206
|
};
|
|
47195
47207
|
|
|
47196
47208
|
|
|
@@ -47446,6 +47458,24 @@ proto.sniipbillerapi.UpdateSmeBillerConfigInternalRequest.prototype.setCreatedby
|
|
|
47446
47458
|
};
|
|
47447
47459
|
|
|
47448
47460
|
|
|
47461
|
+
/**
|
|
47462
|
+
* optional string bankAccountNameOverride = 15;
|
|
47463
|
+
* @return {string}
|
|
47464
|
+
*/
|
|
47465
|
+
proto.sniipbillerapi.UpdateSmeBillerConfigInternalRequest.prototype.getBankaccountnameoverride = function() {
|
|
47466
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
47467
|
+
};
|
|
47468
|
+
|
|
47469
|
+
|
|
47470
|
+
/**
|
|
47471
|
+
* @param {string} value
|
|
47472
|
+
* @return {!proto.sniipbillerapi.UpdateSmeBillerConfigInternalRequest} returns this
|
|
47473
|
+
*/
|
|
47474
|
+
proto.sniipbillerapi.UpdateSmeBillerConfigInternalRequest.prototype.setBankaccountnameoverride = function(value) {
|
|
47475
|
+
return jspb.Message.setProto3StringField(this, 15, value);
|
|
47476
|
+
};
|
|
47477
|
+
|
|
47478
|
+
|
|
47449
47479
|
|
|
47450
47480
|
|
|
47451
47481
|
|