@sniipwebmaster/payment-methods-client-grpcweb 21.23.3915 → 21.23.3939
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 +60 -2
- package/package.json +1 -1
|
@@ -4290,7 +4290,8 @@ proto.sniippaymentmethodsserviceapi.CreditCard.toObject = function(includeInstan
|
|
|
4290
4290
|
attemptedverification: msg.getAttemptedverification(),
|
|
4291
4291
|
iseftpos: msg.getIseftpos(),
|
|
4292
4292
|
isinternational: msg.getIsinternational(),
|
|
4293
|
-
isprepaid: msg.getIsprepaid()
|
|
4293
|
+
isprepaid: msg.getIsprepaid(),
|
|
4294
|
+
requires3ds: msg.getRequires3ds()
|
|
4294
4295
|
};
|
|
4295
4296
|
|
|
4296
4297
|
if (includeInstance) {
|
|
@@ -4400,6 +4401,10 @@ proto.sniippaymentmethodsserviceapi.CreditCard.deserializeBinaryFromReader = fun
|
|
|
4400
4401
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
4401
4402
|
msg.setIsprepaid(value);
|
|
4402
4403
|
break;
|
|
4404
|
+
case 19:
|
|
4405
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
4406
|
+
msg.setRequires3ds(value);
|
|
4407
|
+
break;
|
|
4403
4408
|
default:
|
|
4404
4409
|
reader.skipField();
|
|
4405
4410
|
break;
|
|
@@ -4565,6 +4570,13 @@ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.serializeBinaryToWriter
|
|
|
4565
4570
|
f
|
|
4566
4571
|
);
|
|
4567
4572
|
}
|
|
4573
|
+
f = this.getRequires3ds();
|
|
4574
|
+
if (f) {
|
|
4575
|
+
writer.writeBool(
|
|
4576
|
+
19,
|
|
4577
|
+
f
|
|
4578
|
+
);
|
|
4579
|
+
}
|
|
4568
4580
|
};
|
|
4569
4581
|
|
|
4570
4582
|
|
|
@@ -4876,6 +4888,23 @@ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setIsprepaid = function
|
|
|
4876
4888
|
};
|
|
4877
4889
|
|
|
4878
4890
|
|
|
4891
|
+
/**
|
|
4892
|
+
* optional bool requires3ds = 19;
|
|
4893
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
4894
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
4895
|
+
* @return {boolean}
|
|
4896
|
+
*/
|
|
4897
|
+
proto.sniippaymentmethodsserviceapi.CreditCard.prototype.getRequires3ds = function() {
|
|
4898
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 19, false));
|
|
4899
|
+
};
|
|
4900
|
+
|
|
4901
|
+
|
|
4902
|
+
/** @param {boolean} value */
|
|
4903
|
+
proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setRequires3ds = function(value) {
|
|
4904
|
+
jspb.Message.setField(this, 19, value);
|
|
4905
|
+
};
|
|
4906
|
+
|
|
4907
|
+
|
|
4879
4908
|
|
|
4880
4909
|
/**
|
|
4881
4910
|
* Generated by JsPbCodeGenerator.
|
|
@@ -8406,7 +8435,8 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.toObject = function(include
|
|
|
8406
8435
|
isverified: msg.getIsverified(),
|
|
8407
8436
|
iseftpos: msg.getIseftpos(),
|
|
8408
8437
|
isinternational: msg.getIsinternational(),
|
|
8409
|
-
isprepaid: msg.getIsprepaid()
|
|
8438
|
+
isprepaid: msg.getIsprepaid(),
|
|
8439
|
+
requires3ds: msg.getRequires3ds()
|
|
8410
8440
|
};
|
|
8411
8441
|
|
|
8412
8442
|
if (includeInstance) {
|
|
@@ -8520,6 +8550,10 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.deserializeBinaryFromReader
|
|
|
8520
8550
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
8521
8551
|
msg.setIsprepaid(value);
|
|
8522
8552
|
break;
|
|
8553
|
+
case 20:
|
|
8554
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
8555
|
+
msg.setRequires3ds(value);
|
|
8556
|
+
break;
|
|
8523
8557
|
default:
|
|
8524
8558
|
reader.skipField();
|
|
8525
8559
|
break;
|
|
@@ -8692,6 +8726,13 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.serializeBinaryTo
|
|
|
8692
8726
|
f
|
|
8693
8727
|
);
|
|
8694
8728
|
}
|
|
8729
|
+
f = this.getRequires3ds();
|
|
8730
|
+
if (f) {
|
|
8731
|
+
writer.writeBool(
|
|
8732
|
+
20,
|
|
8733
|
+
f
|
|
8734
|
+
);
|
|
8735
|
+
}
|
|
8695
8736
|
};
|
|
8696
8737
|
|
|
8697
8738
|
|
|
@@ -9018,6 +9059,23 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setIsprepaid = fu
|
|
|
9018
9059
|
};
|
|
9019
9060
|
|
|
9020
9061
|
|
|
9062
|
+
/**
|
|
9063
|
+
* optional bool requires3ds = 20;
|
|
9064
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
9065
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
9066
|
+
* @return {boolean}
|
|
9067
|
+
*/
|
|
9068
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.getRequires3ds = function() {
|
|
9069
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 20, false));
|
|
9070
|
+
};
|
|
9071
|
+
|
|
9072
|
+
|
|
9073
|
+
/** @param {boolean} value */
|
|
9074
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setRequires3ds = function(value) {
|
|
9075
|
+
jspb.Message.setField(this, 20, value);
|
|
9076
|
+
};
|
|
9077
|
+
|
|
9078
|
+
|
|
9021
9079
|
|
|
9022
9080
|
/**
|
|
9023
9081
|
* Generated by JsPbCodeGenerator.
|