@sniipwebmaster/payment-methods-client-grpcweb 25.3.6414 → 25.3.6429

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.
@@ -8493,7 +8493,10 @@ proto.sniippaymentmethodsserviceapi.CreditCard.toObject = function(includeInstan
8493
8493
  requires3ds: jspb.Message.getBooleanFieldWithDefault(msg, 19, false),
8494
8494
  iscorporate: jspb.Message.getBooleanFieldWithDefault(msg, 20, false),
8495
8495
  issmallbusiness: jspb.Message.getBooleanFieldWithDefault(msg, 21, false),
8496
- iscryptocomcard: jspb.Message.getBooleanFieldWithDefault(msg, 22, false)
8496
+ iscryptocomcard: jspb.Message.getBooleanFieldWithDefault(msg, 22, false),
8497
+ cardvalidationresult: jspb.Message.getFieldWithDefault(msg, 23, 0),
8498
+ cardvalidationresulturl: jspb.Message.getFieldWithDefault(msg, 24, ""),
8499
+ redirecturlafterverification: jspb.Message.getFieldWithDefault(msg, 25, "")
8497
8500
  };
8498
8501
 
8499
8502
  if (includeInstance) {
@@ -8619,6 +8622,18 @@ proto.sniippaymentmethodsserviceapi.CreditCard.deserializeBinaryFromReader = fun
8619
8622
  var value = /** @type {boolean} */ (reader.readBool());
8620
8623
  msg.setIscryptocomcard(value);
8621
8624
  break;
8625
+ case 23:
8626
+ var value = /** @type {!proto.sniippaymentmethodsserviceapi.CardValidationResult} */ (reader.readEnum());
8627
+ msg.setCardvalidationresult(value);
8628
+ break;
8629
+ case 24:
8630
+ var value = /** @type {string} */ (reader.readString());
8631
+ msg.setCardvalidationresulturl(value);
8632
+ break;
8633
+ case 25:
8634
+ var value = /** @type {string} */ (reader.readString());
8635
+ msg.setRedirecturlafterverification(value);
8636
+ break;
8622
8637
  default:
8623
8638
  reader.skipField();
8624
8639
  break;
@@ -8803,6 +8818,27 @@ proto.sniippaymentmethodsserviceapi.CreditCard.serializeBinaryToWriter = functio
8803
8818
  f
8804
8819
  );
8805
8820
  }
8821
+ f = message.getCardvalidationresult();
8822
+ if (f !== 0.0) {
8823
+ writer.writeEnum(
8824
+ 23,
8825
+ f
8826
+ );
8827
+ }
8828
+ f = message.getCardvalidationresulturl();
8829
+ if (f.length > 0) {
8830
+ writer.writeString(
8831
+ 24,
8832
+ f
8833
+ );
8834
+ }
8835
+ f = message.getRedirecturlafterverification();
8836
+ if (f.length > 0) {
8837
+ writer.writeString(
8838
+ 25,
8839
+ f
8840
+ );
8841
+ }
8806
8842
  };
8807
8843
 
8808
8844
 
@@ -9221,6 +9257,60 @@ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setIscryptocomcard = fu
9221
9257
  };
9222
9258
 
9223
9259
 
9260
+ /**
9261
+ * optional CardValidationResult cardValidationResult = 23;
9262
+ * @return {!proto.sniippaymentmethodsserviceapi.CardValidationResult}
9263
+ */
9264
+ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.getCardvalidationresult = function() {
9265
+ return /** @type {!proto.sniippaymentmethodsserviceapi.CardValidationResult} */ (jspb.Message.getFieldWithDefault(this, 23, 0));
9266
+ };
9267
+
9268
+
9269
+ /**
9270
+ * @param {!proto.sniippaymentmethodsserviceapi.CardValidationResult} value
9271
+ * @return {!proto.sniippaymentmethodsserviceapi.CreditCard} returns this
9272
+ */
9273
+ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setCardvalidationresult = function(value) {
9274
+ return jspb.Message.setProto3EnumField(this, 23, value);
9275
+ };
9276
+
9277
+
9278
+ /**
9279
+ * optional string CardValidationResultUrl = 24;
9280
+ * @return {string}
9281
+ */
9282
+ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.getCardvalidationresulturl = function() {
9283
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 24, ""));
9284
+ };
9285
+
9286
+
9287
+ /**
9288
+ * @param {string} value
9289
+ * @return {!proto.sniippaymentmethodsserviceapi.CreditCard} returns this
9290
+ */
9291
+ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setCardvalidationresulturl = function(value) {
9292
+ return jspb.Message.setProto3StringField(this, 24, value);
9293
+ };
9294
+
9295
+
9296
+ /**
9297
+ * optional string redirectUrlAfterVerification = 25;
9298
+ * @return {string}
9299
+ */
9300
+ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.getRedirecturlafterverification = function() {
9301
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 25, ""));
9302
+ };
9303
+
9304
+
9305
+ /**
9306
+ * @param {string} value
9307
+ * @return {!proto.sniippaymentmethodsserviceapi.CreditCard} returns this
9308
+ */
9309
+ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setRedirecturlafterverification = function(value) {
9310
+ return jspb.Message.setProto3StringField(this, 25, value);
9311
+ };
9312
+
9313
+
9224
9314
 
9225
9315
 
9226
9316
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/payment-methods-client-grpcweb",
3
- "version": "25.3.6414",
3
+ "version": "25.3.6429",
4
4
  "description": "payment-methods-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",