@sniipwebmaster/payment-methods-client-grpcweb 26.8.8817 → 26.8.8841
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 +43 -1
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ goog.exportSymbol('proto.sniippaymentmethodsserviceapi.BankAccountVerifyRequest'
|
|
|
41
41
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.BankVerifyCodeRequest', null, global);
|
|
42
42
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.BankVerifyCodeResponse', null, global);
|
|
43
43
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.BillConfigForPayment', null, global);
|
|
44
|
+
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.BillConfigForPayment.RejectionReason', null, global);
|
|
44
45
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest', null, global);
|
|
45
46
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentResponse', null, global);
|
|
46
47
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.BrowserInfo', null, global);
|
|
@@ -8494,7 +8495,8 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.toObject = function(inc
|
|
|
8494
8495
|
canacceptpaymentmethod: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
|
|
8495
8496
|
billconfigid: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
8496
8497
|
paymentprocessor: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
8497
|
-
paymentmethodexpired: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
8498
|
+
paymentmethodexpired: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
8499
|
+
rejectionreason: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
8498
8500
|
};
|
|
8499
8501
|
|
|
8500
8502
|
if (includeInstance) {
|
|
@@ -8551,6 +8553,10 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.deserializeBinaryFromRe
|
|
|
8551
8553
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
8552
8554
|
msg.setPaymentmethodexpired(value);
|
|
8553
8555
|
break;
|
|
8556
|
+
case 6:
|
|
8557
|
+
var value = /** @type {!proto.sniippaymentmethodsserviceapi.BillConfigForPayment.RejectionReason} */ (reader.readEnum());
|
|
8558
|
+
msg.setRejectionreason(value);
|
|
8559
|
+
break;
|
|
8554
8560
|
default:
|
|
8555
8561
|
reader.skipField();
|
|
8556
8562
|
break;
|
|
@@ -8615,9 +8621,27 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.serializeBinaryToWriter
|
|
|
8615
8621
|
f
|
|
8616
8622
|
);
|
|
8617
8623
|
}
|
|
8624
|
+
f = message.getRejectionreason();
|
|
8625
|
+
if (f !== 0.0) {
|
|
8626
|
+
writer.writeEnum(
|
|
8627
|
+
6,
|
|
8628
|
+
f
|
|
8629
|
+
);
|
|
8630
|
+
}
|
|
8618
8631
|
};
|
|
8619
8632
|
|
|
8620
8633
|
|
|
8634
|
+
/**
|
|
8635
|
+
* @enum {number}
|
|
8636
|
+
*/
|
|
8637
|
+
proto.sniippaymentmethodsserviceapi.BillConfigForPayment.RejectionReason = {
|
|
8638
|
+
REJECTION_REASON_NONE: 0,
|
|
8639
|
+
REJECTION_REASON_NOT_IN_PAYMENT_METHOD_GROUP: 1,
|
|
8640
|
+
REJECTION_REASON_CONFIG_UNDER_REVIEW: 2,
|
|
8641
|
+
REJECTION_REASON_CONFIG_BLOCKED: 3,
|
|
8642
|
+
REJECTION_REASON_PAYMENT_METHOD_EXPIRED: 4
|
|
8643
|
+
};
|
|
8644
|
+
|
|
8621
8645
|
/**
|
|
8622
8646
|
* optional int64 billId = 1;
|
|
8623
8647
|
* @return {number}
|
|
@@ -8708,6 +8732,24 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.prototype.setPaymentmet
|
|
|
8708
8732
|
};
|
|
8709
8733
|
|
|
8710
8734
|
|
|
8735
|
+
/**
|
|
8736
|
+
* optional RejectionReason rejectionReason = 6;
|
|
8737
|
+
* @return {!proto.sniippaymentmethodsserviceapi.BillConfigForPayment.RejectionReason}
|
|
8738
|
+
*/
|
|
8739
|
+
proto.sniippaymentmethodsserviceapi.BillConfigForPayment.prototype.getRejectionreason = function() {
|
|
8740
|
+
return /** @type {!proto.sniippaymentmethodsserviceapi.BillConfigForPayment.RejectionReason} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
8741
|
+
};
|
|
8742
|
+
|
|
8743
|
+
|
|
8744
|
+
/**
|
|
8745
|
+
* @param {!proto.sniippaymentmethodsserviceapi.BillConfigForPayment.RejectionReason} value
|
|
8746
|
+
* @return {!proto.sniippaymentmethodsserviceapi.BillConfigForPayment} returns this
|
|
8747
|
+
*/
|
|
8748
|
+
proto.sniippaymentmethodsserviceapi.BillConfigForPayment.prototype.setRejectionreason = function(value) {
|
|
8749
|
+
return jspb.Message.setProto3EnumField(this, 6, value);
|
|
8750
|
+
};
|
|
8751
|
+
|
|
8752
|
+
|
|
8711
8753
|
|
|
8712
8754
|
/**
|
|
8713
8755
|
* List of repeated fields within this message type.
|