@sniipwebmaster/config-service-client-grpcweb 26.4.2327 → 26.5.2353
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 +182 -2
- package/package.json +1 -1
|
@@ -1951,7 +1951,9 @@ proto.sniipappappconfigapi.ConfigExtra.toObject = function(includeInstance, msg)
|
|
|
1951
1951
|
click2paybetauser: jspb.Message.getBooleanFieldWithDefault(msg, 48, false),
|
|
1952
1952
|
paymentmethodtypepaymentflowvaluetagMap: (f = msg.getPaymentmethodtypepaymentflowvaluetagMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
1953
1953
|
abaallowedcharacters: jspb.Message.getFieldWithDefault(msg, 50, ""),
|
|
1954
|
-
abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : []
|
|
1954
|
+
abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
1955
|
+
paytominagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 53, 0.0),
|
|
1956
|
+
paytomaxagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 54, 0.0)
|
|
1955
1957
|
};
|
|
1956
1958
|
|
|
1957
1959
|
if (includeInstance) {
|
|
@@ -2200,6 +2202,14 @@ proto.sniipappappconfigapi.ConfigExtra.deserializeBinaryFromReader = function(ms
|
|
|
2200
2202
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
2201
2203
|
});
|
|
2202
2204
|
break;
|
|
2205
|
+
case 53:
|
|
2206
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
2207
|
+
msg.setPaytominagreementamount(value);
|
|
2208
|
+
break;
|
|
2209
|
+
case 54:
|
|
2210
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
2211
|
+
msg.setPaytomaxagreementamount(value);
|
|
2212
|
+
break;
|
|
2203
2213
|
default:
|
|
2204
2214
|
reader.skipField();
|
|
2205
2215
|
break;
|
|
@@ -2579,6 +2589,20 @@ proto.sniipappappconfigapi.ConfigExtra.serializeBinaryToWriter = function(messag
|
|
|
2579
2589
|
if (f && f.getLength() > 0) {
|
|
2580
2590
|
f.serializeBinary(51, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
2581
2591
|
}
|
|
2592
|
+
f = message.getPaytominagreementamount();
|
|
2593
|
+
if (f !== 0.0) {
|
|
2594
|
+
writer.writeDouble(
|
|
2595
|
+
53,
|
|
2596
|
+
f
|
|
2597
|
+
);
|
|
2598
|
+
}
|
|
2599
|
+
f = message.getPaytomaxagreementamount();
|
|
2600
|
+
if (f !== 0.0) {
|
|
2601
|
+
writer.writeDouble(
|
|
2602
|
+
54,
|
|
2603
|
+
f
|
|
2604
|
+
);
|
|
2605
|
+
}
|
|
2582
2606
|
};
|
|
2583
2607
|
|
|
2584
2608
|
|
|
@@ -3588,6 +3612,42 @@ proto.sniipappappconfigapi.ConfigExtra.prototype.clearAbacharacternormalisations
|
|
|
3588
3612
|
return this;};
|
|
3589
3613
|
|
|
3590
3614
|
|
|
3615
|
+
/**
|
|
3616
|
+
* optional double payToMinAgreementAmount = 53;
|
|
3617
|
+
* @return {number}
|
|
3618
|
+
*/
|
|
3619
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.getPaytominagreementamount = function() {
|
|
3620
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 53, 0.0));
|
|
3621
|
+
};
|
|
3622
|
+
|
|
3623
|
+
|
|
3624
|
+
/**
|
|
3625
|
+
* @param {number} value
|
|
3626
|
+
* @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
|
|
3627
|
+
*/
|
|
3628
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.setPaytominagreementamount = function(value) {
|
|
3629
|
+
return jspb.Message.setProto3FloatField(this, 53, value);
|
|
3630
|
+
};
|
|
3631
|
+
|
|
3632
|
+
|
|
3633
|
+
/**
|
|
3634
|
+
* optional double payToMaxAgreementAmount = 54;
|
|
3635
|
+
* @return {number}
|
|
3636
|
+
*/
|
|
3637
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.getPaytomaxagreementamount = function() {
|
|
3638
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 54, 0.0));
|
|
3639
|
+
};
|
|
3640
|
+
|
|
3641
|
+
|
|
3642
|
+
/**
|
|
3643
|
+
* @param {number} value
|
|
3644
|
+
* @return {!proto.sniipappappconfigapi.ConfigExtra} returns this
|
|
3645
|
+
*/
|
|
3646
|
+
proto.sniipappappconfigapi.ConfigExtra.prototype.setPaytomaxagreementamount = function(value) {
|
|
3647
|
+
return jspb.Message.setProto3FloatField(this, 54, value);
|
|
3648
|
+
};
|
|
3649
|
+
|
|
3650
|
+
|
|
3591
3651
|
|
|
3592
3652
|
|
|
3593
3653
|
|
|
@@ -4762,7 +4822,11 @@ proto.sniipappappconfigapi.BusinessRules.prototype.toObject = function(opt_inclu
|
|
|
4762
4822
|
proto.sniipappappconfigapi.BusinessRules.toObject = function(includeInstance, msg) {
|
|
4763
4823
|
var f, obj = {
|
|
4764
4824
|
abaallowedcharacters: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
4765
|
-
abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : []
|
|
4825
|
+
abacharacternormalisationsMap: (f = msg.getAbacharacternormalisationsMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
4826
|
+
paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
4827
|
+
paytopendingexpiryseconds: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
4828
|
+
paytominagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
|
|
4829
|
+
paytomaxagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0)
|
|
4766
4830
|
};
|
|
4767
4831
|
|
|
4768
4832
|
if (includeInstance) {
|
|
@@ -4809,6 +4873,22 @@ proto.sniipappappconfigapi.BusinessRules.deserializeBinaryFromReader = function(
|
|
|
4809
4873
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
|
4810
4874
|
});
|
|
4811
4875
|
break;
|
|
4876
|
+
case 3:
|
|
4877
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
4878
|
+
msg.setPaytobankaccountsenabled(value);
|
|
4879
|
+
break;
|
|
4880
|
+
case 4:
|
|
4881
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
4882
|
+
msg.setPaytopendingexpiryseconds(value);
|
|
4883
|
+
break;
|
|
4884
|
+
case 5:
|
|
4885
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
4886
|
+
msg.setPaytominagreementamount(value);
|
|
4887
|
+
break;
|
|
4888
|
+
case 6:
|
|
4889
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
4890
|
+
msg.setPaytomaxagreementamount(value);
|
|
4891
|
+
break;
|
|
4812
4892
|
default:
|
|
4813
4893
|
reader.skipField();
|
|
4814
4894
|
break;
|
|
@@ -4849,6 +4929,34 @@ proto.sniipappappconfigapi.BusinessRules.serializeBinaryToWriter = function(mess
|
|
|
4849
4929
|
if (f && f.getLength() > 0) {
|
|
4850
4930
|
f.serializeBinary(2, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
|
4851
4931
|
}
|
|
4932
|
+
f = message.getPaytobankaccountsenabled();
|
|
4933
|
+
if (f) {
|
|
4934
|
+
writer.writeBool(
|
|
4935
|
+
3,
|
|
4936
|
+
f
|
|
4937
|
+
);
|
|
4938
|
+
}
|
|
4939
|
+
f = message.getPaytopendingexpiryseconds();
|
|
4940
|
+
if (f !== 0) {
|
|
4941
|
+
writer.writeInt32(
|
|
4942
|
+
4,
|
|
4943
|
+
f
|
|
4944
|
+
);
|
|
4945
|
+
}
|
|
4946
|
+
f = message.getPaytominagreementamount();
|
|
4947
|
+
if (f !== 0.0) {
|
|
4948
|
+
writer.writeDouble(
|
|
4949
|
+
5,
|
|
4950
|
+
f
|
|
4951
|
+
);
|
|
4952
|
+
}
|
|
4953
|
+
f = message.getPaytomaxagreementamount();
|
|
4954
|
+
if (f !== 0.0) {
|
|
4955
|
+
writer.writeDouble(
|
|
4956
|
+
6,
|
|
4957
|
+
f
|
|
4958
|
+
);
|
|
4959
|
+
}
|
|
4852
4960
|
};
|
|
4853
4961
|
|
|
4854
4962
|
|
|
@@ -4892,6 +5000,78 @@ proto.sniipappappconfigapi.BusinessRules.prototype.clearAbacharacternormalisatio
|
|
|
4892
5000
|
return this;};
|
|
4893
5001
|
|
|
4894
5002
|
|
|
5003
|
+
/**
|
|
5004
|
+
* optional bool payToBankAccountsEnabled = 3;
|
|
5005
|
+
* @return {boolean}
|
|
5006
|
+
*/
|
|
5007
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.getPaytobankaccountsenabled = function() {
|
|
5008
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
5009
|
+
};
|
|
5010
|
+
|
|
5011
|
+
|
|
5012
|
+
/**
|
|
5013
|
+
* @param {boolean} value
|
|
5014
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5015
|
+
*/
|
|
5016
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.setPaytobankaccountsenabled = function(value) {
|
|
5017
|
+
return jspb.Message.setProto3BooleanField(this, 3, value);
|
|
5018
|
+
};
|
|
5019
|
+
|
|
5020
|
+
|
|
5021
|
+
/**
|
|
5022
|
+
* optional int32 payToPendingExpirySeconds = 4;
|
|
5023
|
+
* @return {number}
|
|
5024
|
+
*/
|
|
5025
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.getPaytopendingexpiryseconds = function() {
|
|
5026
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
|
|
5027
|
+
};
|
|
5028
|
+
|
|
5029
|
+
|
|
5030
|
+
/**
|
|
5031
|
+
* @param {number} value
|
|
5032
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5033
|
+
*/
|
|
5034
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.setPaytopendingexpiryseconds = function(value) {
|
|
5035
|
+
return jspb.Message.setProto3IntField(this, 4, value);
|
|
5036
|
+
};
|
|
5037
|
+
|
|
5038
|
+
|
|
5039
|
+
/**
|
|
5040
|
+
* optional double payToMinAgreementAmount = 5;
|
|
5041
|
+
* @return {number}
|
|
5042
|
+
*/
|
|
5043
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.getPaytominagreementamount = function() {
|
|
5044
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 5, 0.0));
|
|
5045
|
+
};
|
|
5046
|
+
|
|
5047
|
+
|
|
5048
|
+
/**
|
|
5049
|
+
* @param {number} value
|
|
5050
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5051
|
+
*/
|
|
5052
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.setPaytominagreementamount = function(value) {
|
|
5053
|
+
return jspb.Message.setProto3FloatField(this, 5, value);
|
|
5054
|
+
};
|
|
5055
|
+
|
|
5056
|
+
|
|
5057
|
+
/**
|
|
5058
|
+
* optional double payToMaxAgreementAmount = 6;
|
|
5059
|
+
* @return {number}
|
|
5060
|
+
*/
|
|
5061
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.getPaytomaxagreementamount = function() {
|
|
5062
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 6, 0.0));
|
|
5063
|
+
};
|
|
5064
|
+
|
|
5065
|
+
|
|
5066
|
+
/**
|
|
5067
|
+
* @param {number} value
|
|
5068
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5069
|
+
*/
|
|
5070
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.setPaytomaxagreementamount = function(value) {
|
|
5071
|
+
return jspb.Message.setProto3FloatField(this, 6, value);
|
|
5072
|
+
};
|
|
5073
|
+
|
|
5074
|
+
|
|
4895
5075
|
|
|
4896
5076
|
|
|
4897
5077
|
|