@sniipwebmaster/payment-methods-client-grpcweb 0.2.2653 → 0.2.2662
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 +177 -3
- package/package.json +1 -1
|
@@ -3079,7 +3079,9 @@ proto.sniippaymentmethodsserviceapi.CreditCard.toObject = function(includeInstan
|
|
|
3079
3079
|
iscreditcard: msg.getIscreditcard(),
|
|
3080
3080
|
isdebitcard: msg.getIsdebitcard(),
|
|
3081
3081
|
isverified: msg.getIsverified(),
|
|
3082
|
-
attemptedverification: msg.getAttemptedverification()
|
|
3082
|
+
attemptedverification: msg.getAttemptedverification(),
|
|
3083
|
+
iseftpos: msg.getIseftpos(),
|
|
3084
|
+
isinternational: msg.getIsinternational()
|
|
3083
3085
|
};
|
|
3084
3086
|
|
|
3085
3087
|
if (includeInstance) {
|
|
@@ -3177,6 +3179,14 @@ proto.sniippaymentmethodsserviceapi.CreditCard.deserializeBinaryFromReader = fun
|
|
|
3177
3179
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
3178
3180
|
msg.setAttemptedverification(value);
|
|
3179
3181
|
break;
|
|
3182
|
+
case 16:
|
|
3183
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
3184
|
+
msg.setIseftpos(value);
|
|
3185
|
+
break;
|
|
3186
|
+
case 17:
|
|
3187
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
3188
|
+
msg.setIsinternational(value);
|
|
3189
|
+
break;
|
|
3180
3190
|
default:
|
|
3181
3191
|
reader.skipField();
|
|
3182
3192
|
break;
|
|
@@ -3321,6 +3331,20 @@ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.serializeBinaryToWriter
|
|
|
3321
3331
|
f
|
|
3322
3332
|
);
|
|
3323
3333
|
}
|
|
3334
|
+
f = this.getIseftpos();
|
|
3335
|
+
if (f) {
|
|
3336
|
+
writer.writeBool(
|
|
3337
|
+
16,
|
|
3338
|
+
f
|
|
3339
|
+
);
|
|
3340
|
+
}
|
|
3341
|
+
f = this.getIsinternational();
|
|
3342
|
+
if (f) {
|
|
3343
|
+
writer.writeBool(
|
|
3344
|
+
17,
|
|
3345
|
+
f
|
|
3346
|
+
);
|
|
3347
|
+
}
|
|
3324
3348
|
};
|
|
3325
3349
|
|
|
3326
3350
|
|
|
@@ -3581,6 +3605,40 @@ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setAttemptedverificatio
|
|
|
3581
3605
|
};
|
|
3582
3606
|
|
|
3583
3607
|
|
|
3608
|
+
/**
|
|
3609
|
+
* optional bool isEftpos = 16;
|
|
3610
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
3611
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
3612
|
+
* @return {boolean}
|
|
3613
|
+
*/
|
|
3614
|
+
proto.sniippaymentmethodsserviceapi.CreditCard.prototype.getIseftpos = function() {
|
|
3615
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 16, false));
|
|
3616
|
+
};
|
|
3617
|
+
|
|
3618
|
+
|
|
3619
|
+
/** @param {boolean} value */
|
|
3620
|
+
proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setIseftpos = function(value) {
|
|
3621
|
+
jspb.Message.setField(this, 16, value);
|
|
3622
|
+
};
|
|
3623
|
+
|
|
3624
|
+
|
|
3625
|
+
/**
|
|
3626
|
+
* optional bool isInternational = 17;
|
|
3627
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
3628
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
3629
|
+
* @return {boolean}
|
|
3630
|
+
*/
|
|
3631
|
+
proto.sniippaymentmethodsserviceapi.CreditCard.prototype.getIsinternational = function() {
|
|
3632
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 17, false));
|
|
3633
|
+
};
|
|
3634
|
+
|
|
3635
|
+
|
|
3636
|
+
/** @param {boolean} value */
|
|
3637
|
+
proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setIsinternational = function(value) {
|
|
3638
|
+
jspb.Message.setField(this, 17, value);
|
|
3639
|
+
};
|
|
3640
|
+
|
|
3641
|
+
|
|
3584
3642
|
|
|
3585
3643
|
/**
|
|
3586
3644
|
* Generated by JsPbCodeGenerator.
|
|
@@ -6327,7 +6385,9 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.toObject = function(include
|
|
|
6327
6385
|
isdeleted: msg.getIsdeleted(),
|
|
6328
6386
|
iscreditcard: msg.getIscreditcard(),
|
|
6329
6387
|
isdebitcard: msg.getIsdebitcard(),
|
|
6330
|
-
isverified: msg.getIsverified()
|
|
6388
|
+
isverified: msg.getIsverified(),
|
|
6389
|
+
iseftpos: msg.getIseftpos(),
|
|
6390
|
+
isinternational: msg.getIsinternational()
|
|
6331
6391
|
};
|
|
6332
6392
|
|
|
6333
6393
|
if (includeInstance) {
|
|
@@ -6429,6 +6489,14 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.deserializeBinaryFromReader
|
|
|
6429
6489
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
6430
6490
|
msg.setIsverified(value);
|
|
6431
6491
|
break;
|
|
6492
|
+
case 17:
|
|
6493
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
6494
|
+
msg.setIseftpos(value);
|
|
6495
|
+
break;
|
|
6496
|
+
case 18:
|
|
6497
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
6498
|
+
msg.setIsinternational(value);
|
|
6499
|
+
break;
|
|
6432
6500
|
default:
|
|
6433
6501
|
reader.skipField();
|
|
6434
6502
|
break;
|
|
@@ -6580,6 +6648,20 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.serializeBinaryTo
|
|
|
6580
6648
|
f
|
|
6581
6649
|
);
|
|
6582
6650
|
}
|
|
6651
|
+
f = this.getIseftpos();
|
|
6652
|
+
if (f) {
|
|
6653
|
+
writer.writeBool(
|
|
6654
|
+
17,
|
|
6655
|
+
f
|
|
6656
|
+
);
|
|
6657
|
+
}
|
|
6658
|
+
f = this.getIsinternational();
|
|
6659
|
+
if (f) {
|
|
6660
|
+
writer.writeBool(
|
|
6661
|
+
18,
|
|
6662
|
+
f
|
|
6663
|
+
);
|
|
6664
|
+
}
|
|
6583
6665
|
};
|
|
6584
6666
|
|
|
6585
6667
|
|
|
@@ -6855,6 +6937,40 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setIsverified = f
|
|
|
6855
6937
|
};
|
|
6856
6938
|
|
|
6857
6939
|
|
|
6940
|
+
/**
|
|
6941
|
+
* optional bool isEftpos = 17;
|
|
6942
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
6943
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
6944
|
+
* @return {boolean}
|
|
6945
|
+
*/
|
|
6946
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.getIseftpos = function() {
|
|
6947
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 17, false));
|
|
6948
|
+
};
|
|
6949
|
+
|
|
6950
|
+
|
|
6951
|
+
/** @param {boolean} value */
|
|
6952
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setIseftpos = function(value) {
|
|
6953
|
+
jspb.Message.setField(this, 17, value);
|
|
6954
|
+
};
|
|
6955
|
+
|
|
6956
|
+
|
|
6957
|
+
/**
|
|
6958
|
+
* optional bool isInternational = 18;
|
|
6959
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
6960
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
6961
|
+
* @return {boolean}
|
|
6962
|
+
*/
|
|
6963
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.getIsinternational = function() {
|
|
6964
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 18, false));
|
|
6965
|
+
};
|
|
6966
|
+
|
|
6967
|
+
|
|
6968
|
+
/** @param {boolean} value */
|
|
6969
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setIsinternational = function(value) {
|
|
6970
|
+
jspb.Message.setField(this, 18, value);
|
|
6971
|
+
};
|
|
6972
|
+
|
|
6973
|
+
|
|
6858
6974
|
|
|
6859
6975
|
/**
|
|
6860
6976
|
* Generated by JsPbCodeGenerator.
|
|
@@ -6919,7 +7035,9 @@ proto.sniippaymentmethodsserviceapi.MasterBinLookupOverrideUpdateRequest.toObjec
|
|
|
6919
7035
|
bankurl: msg.getBankurl(),
|
|
6920
7036
|
bankphone: msg.getBankphone(),
|
|
6921
7037
|
banklogoname: msg.getBanklogoname(),
|
|
6922
|
-
cardtype: msg.getCardtype()
|
|
7038
|
+
cardtype: msg.getCardtype(),
|
|
7039
|
+
iseftpos: msg.getIseftpos(),
|
|
7040
|
+
isinternational: msg.getIsinternational()
|
|
6923
7041
|
};
|
|
6924
7042
|
|
|
6925
7043
|
if (includeInstance) {
|
|
@@ -7032,6 +7150,14 @@ proto.sniippaymentmethodsserviceapi.MasterBinLookupOverrideUpdateRequest.deseria
|
|
|
7032
7150
|
var value = /** @type {string} */ (reader.readString());
|
|
7033
7151
|
msg.setCardtype(value);
|
|
7034
7152
|
break;
|
|
7153
|
+
case 20:
|
|
7154
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
7155
|
+
msg.setIseftpos(value);
|
|
7156
|
+
break;
|
|
7157
|
+
case 21:
|
|
7158
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
7159
|
+
msg.setIsinternational(value);
|
|
7160
|
+
break;
|
|
7035
7161
|
default:
|
|
7036
7162
|
reader.skipField();
|
|
7037
7163
|
break;
|
|
@@ -7203,6 +7329,20 @@ proto.sniippaymentmethodsserviceapi.MasterBinLookupOverrideUpdateRequest.prototy
|
|
|
7203
7329
|
f
|
|
7204
7330
|
);
|
|
7205
7331
|
}
|
|
7332
|
+
f = this.getIseftpos();
|
|
7333
|
+
if (f) {
|
|
7334
|
+
writer.writeBool(
|
|
7335
|
+
20,
|
|
7336
|
+
f
|
|
7337
|
+
);
|
|
7338
|
+
}
|
|
7339
|
+
f = this.getIsinternational();
|
|
7340
|
+
if (f) {
|
|
7341
|
+
writer.writeBool(
|
|
7342
|
+
21,
|
|
7343
|
+
f
|
|
7344
|
+
);
|
|
7345
|
+
}
|
|
7206
7346
|
};
|
|
7207
7347
|
|
|
7208
7348
|
|
|
@@ -7504,6 +7644,40 @@ proto.sniippaymentmethodsserviceapi.MasterBinLookupOverrideUpdateRequest.prototy
|
|
|
7504
7644
|
};
|
|
7505
7645
|
|
|
7506
7646
|
|
|
7647
|
+
/**
|
|
7648
|
+
* optional bool isEftpos = 20;
|
|
7649
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
7650
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
7651
|
+
* @return {boolean}
|
|
7652
|
+
*/
|
|
7653
|
+
proto.sniippaymentmethodsserviceapi.MasterBinLookupOverrideUpdateRequest.prototype.getIseftpos = function() {
|
|
7654
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 20, false));
|
|
7655
|
+
};
|
|
7656
|
+
|
|
7657
|
+
|
|
7658
|
+
/** @param {boolean} value */
|
|
7659
|
+
proto.sniippaymentmethodsserviceapi.MasterBinLookupOverrideUpdateRequest.prototype.setIseftpos = function(value) {
|
|
7660
|
+
jspb.Message.setField(this, 20, value);
|
|
7661
|
+
};
|
|
7662
|
+
|
|
7663
|
+
|
|
7664
|
+
/**
|
|
7665
|
+
* optional bool isInternational = 21;
|
|
7666
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
7667
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
7668
|
+
* @return {boolean}
|
|
7669
|
+
*/
|
|
7670
|
+
proto.sniippaymentmethodsserviceapi.MasterBinLookupOverrideUpdateRequest.prototype.getIsinternational = function() {
|
|
7671
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 21, false));
|
|
7672
|
+
};
|
|
7673
|
+
|
|
7674
|
+
|
|
7675
|
+
/** @param {boolean} value */
|
|
7676
|
+
proto.sniippaymentmethodsserviceapi.MasterBinLookupOverrideUpdateRequest.prototype.setIsinternational = function(value) {
|
|
7677
|
+
jspb.Message.setField(this, 21, value);
|
|
7678
|
+
};
|
|
7679
|
+
|
|
7680
|
+
|
|
7507
7681
|
|
|
7508
7682
|
/**
|
|
7509
7683
|
* Generated by JsPbCodeGenerator.
|