@sniipwebmaster/payment-methods-client-grpcweb 26.4.8425 → 26.5.8443
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
|
@@ -15792,7 +15792,9 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.toObject = function(include
|
|
|
15792
15792
|
redirecturlafterverification: jspb.Message.getFieldWithDefault(msg, 27, ""),
|
|
15793
15793
|
binpaymentenabled: jspb.Message.getBooleanFieldWithDefault(msg, 28, false),
|
|
15794
15794
|
cardsubtypecode: jspb.Message.getFieldWithDefault(msg, 29, ""),
|
|
15795
|
-
cardsubtypedisplayname: jspb.Message.getFieldWithDefault(msg, 30, "")
|
|
15795
|
+
cardsubtypedisplayname: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
|
15796
|
+
bin: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
15797
|
+
cardcountry: jspb.Message.getFieldWithDefault(msg, 32, "")
|
|
15796
15798
|
};
|
|
15797
15799
|
|
|
15798
15800
|
if (includeInstance) {
|
|
@@ -15950,6 +15952,14 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.deserializeBinaryFromReader
|
|
|
15950
15952
|
var value = /** @type {string} */ (reader.readString());
|
|
15951
15953
|
msg.setCardsubtypedisplayname(value);
|
|
15952
15954
|
break;
|
|
15955
|
+
case 31:
|
|
15956
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15957
|
+
msg.setBin(value);
|
|
15958
|
+
break;
|
|
15959
|
+
case 32:
|
|
15960
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15961
|
+
msg.setCardcountry(value);
|
|
15962
|
+
break;
|
|
15953
15963
|
default:
|
|
15954
15964
|
reader.skipField();
|
|
15955
15965
|
break;
|
|
@@ -16190,6 +16200,20 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.serializeBinaryToWriter = f
|
|
|
16190
16200
|
f
|
|
16191
16201
|
);
|
|
16192
16202
|
}
|
|
16203
|
+
f = message.getBin();
|
|
16204
|
+
if (f.length > 0) {
|
|
16205
|
+
writer.writeString(
|
|
16206
|
+
31,
|
|
16207
|
+
f
|
|
16208
|
+
);
|
|
16209
|
+
}
|
|
16210
|
+
f = message.getCardcountry();
|
|
16211
|
+
if (f.length > 0) {
|
|
16212
|
+
writer.writeString(
|
|
16213
|
+
32,
|
|
16214
|
+
f
|
|
16215
|
+
);
|
|
16216
|
+
}
|
|
16193
16217
|
};
|
|
16194
16218
|
|
|
16195
16219
|
|
|
@@ -16752,6 +16776,42 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setCardsubtypedis
|
|
|
16752
16776
|
};
|
|
16753
16777
|
|
|
16754
16778
|
|
|
16779
|
+
/**
|
|
16780
|
+
* optional string bin = 31;
|
|
16781
|
+
* @return {string}
|
|
16782
|
+
*/
|
|
16783
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.getBin = function() {
|
|
16784
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 31, ""));
|
|
16785
|
+
};
|
|
16786
|
+
|
|
16787
|
+
|
|
16788
|
+
/**
|
|
16789
|
+
* @param {string} value
|
|
16790
|
+
* @return {!proto.sniippaymentmethodsserviceapi.MaskedCreditCard} returns this
|
|
16791
|
+
*/
|
|
16792
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setBin = function(value) {
|
|
16793
|
+
return jspb.Message.setProto3StringField(this, 31, value);
|
|
16794
|
+
};
|
|
16795
|
+
|
|
16796
|
+
|
|
16797
|
+
/**
|
|
16798
|
+
* optional string cardCountry = 32;
|
|
16799
|
+
* @return {string}
|
|
16800
|
+
*/
|
|
16801
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.getCardcountry = function() {
|
|
16802
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 32, ""));
|
|
16803
|
+
};
|
|
16804
|
+
|
|
16805
|
+
|
|
16806
|
+
/**
|
|
16807
|
+
* @param {string} value
|
|
16808
|
+
* @return {!proto.sniippaymentmethodsserviceapi.MaskedCreditCard} returns this
|
|
16809
|
+
*/
|
|
16810
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setCardcountry = function(value) {
|
|
16811
|
+
return jspb.Message.setProto3StringField(this, 32, value);
|
|
16812
|
+
};
|
|
16813
|
+
|
|
16814
|
+
|
|
16755
16815
|
|
|
16756
16816
|
|
|
16757
16817
|
|