@sniipwebmaster/biller-service-client-grpcweb 0.2.2738 → 0.2.2761
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 +83 -2
- package/package.json +1 -1
|
@@ -4288,7 +4288,8 @@ proto.sniipbillerapi.Biller.toObject = function(includeInstance, msg) {
|
|
|
4288
4288
|
donationmessage: msg.getDonationmessage(),
|
|
4289
4289
|
donationmessage2: msg.getDonationmessage2(),
|
|
4290
4290
|
donationmessage3: msg.getDonationmessage3(),
|
|
4291
|
-
graceperiod: msg.getGraceperiod()
|
|
4291
|
+
graceperiod: msg.getGraceperiod(),
|
|
4292
|
+
description: msg.getDescription()
|
|
4292
4293
|
};
|
|
4293
4294
|
|
|
4294
4295
|
if (includeInstance) {
|
|
@@ -4390,6 +4391,10 @@ proto.sniipbillerapi.Biller.deserializeBinaryFromReader = function(msg, reader)
|
|
|
4390
4391
|
var value = /** @type {number} */ (reader.readInt64());
|
|
4391
4392
|
msg.setGraceperiod(value);
|
|
4392
4393
|
break;
|
|
4394
|
+
case 16:
|
|
4395
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4396
|
+
msg.setDescription(value);
|
|
4397
|
+
break;
|
|
4393
4398
|
default:
|
|
4394
4399
|
reader.skipField();
|
|
4395
4400
|
break;
|
|
@@ -4536,6 +4541,13 @@ proto.sniipbillerapi.Biller.prototype.serializeBinaryToWriter = function (writer
|
|
|
4536
4541
|
f
|
|
4537
4542
|
);
|
|
4538
4543
|
}
|
|
4544
|
+
f = this.getDescription();
|
|
4545
|
+
if (f.length > 0) {
|
|
4546
|
+
writer.writeString(
|
|
4547
|
+
16,
|
|
4548
|
+
f
|
|
4549
|
+
);
|
|
4550
|
+
}
|
|
4539
4551
|
};
|
|
4540
4552
|
|
|
4541
4553
|
|
|
@@ -4806,6 +4818,21 @@ proto.sniipbillerapi.Biller.prototype.setGraceperiod = function(value) {
|
|
|
4806
4818
|
};
|
|
4807
4819
|
|
|
4808
4820
|
|
|
4821
|
+
/**
|
|
4822
|
+
* optional string description = 16;
|
|
4823
|
+
* @return {string}
|
|
4824
|
+
*/
|
|
4825
|
+
proto.sniipbillerapi.Biller.prototype.getDescription = function() {
|
|
4826
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 16, ""));
|
|
4827
|
+
};
|
|
4828
|
+
|
|
4829
|
+
|
|
4830
|
+
/** @param {string} value */
|
|
4831
|
+
proto.sniipbillerapi.Biller.prototype.setDescription = function(value) {
|
|
4832
|
+
jspb.Message.setField(this, 16, value);
|
|
4833
|
+
};
|
|
4834
|
+
|
|
4835
|
+
|
|
4809
4836
|
|
|
4810
4837
|
/**
|
|
4811
4838
|
* Generated by JsPbCodeGenerator.
|
|
@@ -17698,7 +17725,9 @@ proto.sniipbillerapi.Organisation.toObject = function(includeInstance, msg) {
|
|
|
17698
17725
|
maxamountpermitted: msg.getMaxamountpermitted(),
|
|
17699
17726
|
minamountpermitted: msg.getMinamountpermitted(),
|
|
17700
17727
|
acceptedpaymentmethodsList: jspb.Message.getField(msg, 7),
|
|
17701
|
-
userhasvalidpaymentmethods: msg.getUserhasvalidpaymentmethods()
|
|
17728
|
+
userhasvalidpaymentmethods: msg.getUserhasvalidpaymentmethods(),
|
|
17729
|
+
billertimezone: msg.getBillertimezone(),
|
|
17730
|
+
billertimezoneabbr: msg.getBillertimezoneabbr()
|
|
17702
17731
|
};
|
|
17703
17732
|
|
|
17704
17733
|
if (includeInstance) {
|
|
@@ -17768,6 +17797,14 @@ proto.sniipbillerapi.Organisation.deserializeBinaryFromReader = function(msg, re
|
|
|
17768
17797
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
17769
17798
|
msg.setUserhasvalidpaymentmethods(value);
|
|
17770
17799
|
break;
|
|
17800
|
+
case 9:
|
|
17801
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17802
|
+
msg.setBillertimezone(value);
|
|
17803
|
+
break;
|
|
17804
|
+
case 10:
|
|
17805
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17806
|
+
msg.setBillertimezoneabbr(value);
|
|
17807
|
+
break;
|
|
17771
17808
|
default:
|
|
17772
17809
|
reader.skipField();
|
|
17773
17810
|
break;
|
|
@@ -17862,6 +17899,20 @@ proto.sniipbillerapi.Organisation.prototype.serializeBinaryToWriter = function (
|
|
|
17862
17899
|
f
|
|
17863
17900
|
);
|
|
17864
17901
|
}
|
|
17902
|
+
f = this.getBillertimezone();
|
|
17903
|
+
if (f.length > 0) {
|
|
17904
|
+
writer.writeString(
|
|
17905
|
+
9,
|
|
17906
|
+
f
|
|
17907
|
+
);
|
|
17908
|
+
}
|
|
17909
|
+
f = this.getBillertimezoneabbr();
|
|
17910
|
+
if (f.length > 0) {
|
|
17911
|
+
writer.writeString(
|
|
17912
|
+
10,
|
|
17913
|
+
f
|
|
17914
|
+
);
|
|
17915
|
+
}
|
|
17865
17916
|
};
|
|
17866
17917
|
|
|
17867
17918
|
|
|
@@ -18003,6 +18054,36 @@ proto.sniipbillerapi.Organisation.prototype.setUserhasvalidpaymentmethods = func
|
|
|
18003
18054
|
};
|
|
18004
18055
|
|
|
18005
18056
|
|
|
18057
|
+
/**
|
|
18058
|
+
* optional string billerTimezone = 9;
|
|
18059
|
+
* @return {string}
|
|
18060
|
+
*/
|
|
18061
|
+
proto.sniipbillerapi.Organisation.prototype.getBillertimezone = function() {
|
|
18062
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 9, ""));
|
|
18063
|
+
};
|
|
18064
|
+
|
|
18065
|
+
|
|
18066
|
+
/** @param {string} value */
|
|
18067
|
+
proto.sniipbillerapi.Organisation.prototype.setBillertimezone = function(value) {
|
|
18068
|
+
jspb.Message.setField(this, 9, value);
|
|
18069
|
+
};
|
|
18070
|
+
|
|
18071
|
+
|
|
18072
|
+
/**
|
|
18073
|
+
* optional string billerTimezoneAbbr = 10;
|
|
18074
|
+
* @return {string}
|
|
18075
|
+
*/
|
|
18076
|
+
proto.sniipbillerapi.Organisation.prototype.getBillertimezoneabbr = function() {
|
|
18077
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 10, ""));
|
|
18078
|
+
};
|
|
18079
|
+
|
|
18080
|
+
|
|
18081
|
+
/** @param {string} value */
|
|
18082
|
+
proto.sniipbillerapi.Organisation.prototype.setBillertimezoneabbr = function(value) {
|
|
18083
|
+
jspb.Message.setField(this, 10, value);
|
|
18084
|
+
};
|
|
18085
|
+
|
|
18086
|
+
|
|
18006
18087
|
|
|
18007
18088
|
/**
|
|
18008
18089
|
* Generated by JsPbCodeGenerator.
|