@sniipwebmaster/payment-methods-client-grpcweb-ts 26.9.9019 → 26.9.9051
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.d.ts +2 -12
- package/dependancies/service_pb.js +4 -104
- package/package.json +1 -1
|
@@ -838,6 +838,8 @@ export namespace BillConfigForPayment {
|
|
|
838
838
|
REJECTION_REASON_MISSING_SME_CONFIG = 5,
|
|
839
839
|
REJECTION_REASON_NOT_AVAILABLE_FOR_BULK = 6,
|
|
840
840
|
REJECTION_REASON_NOT_AVAILABLE_FOR_SCHEDULED = 7,
|
|
841
|
+
REJECTION_REASON_CARD_VERIFICATION_REQUIRED = 8,
|
|
842
|
+
REJECTION_REASON_CARD_VERIFICATION_FAILED = 9,
|
|
841
843
|
}
|
|
842
844
|
}
|
|
843
845
|
|
|
@@ -1031,16 +1033,6 @@ export class PaymentMethodAvailabilityRequest extends jspb.Message {
|
|
|
1031
1033
|
getIsbulk(): boolean;
|
|
1032
1034
|
setIsbulk(value: boolean): PaymentMethodAvailabilityRequest;
|
|
1033
1035
|
|
|
1034
|
-
getApplepaydetail(): ApplePayDetail | undefined;
|
|
1035
|
-
setApplepaydetail(value?: ApplePayDetail): PaymentMethodAvailabilityRequest;
|
|
1036
|
-
hasApplepaydetail(): boolean;
|
|
1037
|
-
clearApplepaydetail(): PaymentMethodAvailabilityRequest;
|
|
1038
|
-
|
|
1039
|
-
getGooglepaydetail(): GooglePayDetail | undefined;
|
|
1040
|
-
setGooglepaydetail(value?: GooglePayDetail): PaymentMethodAvailabilityRequest;
|
|
1041
|
-
hasGooglepaydetail(): boolean;
|
|
1042
|
-
clearGooglepaydetail(): PaymentMethodAvailabilityRequest;
|
|
1043
|
-
|
|
1044
1036
|
serializeBinary(): Uint8Array;
|
|
1045
1037
|
toObject(includeInstance?: boolean): PaymentMethodAvailabilityRequest.AsObject;
|
|
1046
1038
|
static toObject(includeInstance: boolean, msg: PaymentMethodAvailabilityRequest): PaymentMethodAvailabilityRequest.AsObject;
|
|
@@ -1056,8 +1048,6 @@ export namespace PaymentMethodAvailabilityRequest {
|
|
|
1056
1048
|
paymentmethodidsList: Array<number>,
|
|
1057
1049
|
isscheduled: boolean,
|
|
1058
1050
|
isbulk: boolean,
|
|
1059
|
-
applepaydetail?: ApplePayDetail.AsObject,
|
|
1060
|
-
googlepaydetail?: GooglePayDetail.AsObject,
|
|
1061
1051
|
}
|
|
1062
1052
|
}
|
|
1063
1053
|
|
|
@@ -8973,7 +8973,9 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.RejectionReason = {
|
|
|
8973
8973
|
REJECTION_REASON_PAYMENT_METHOD_EXPIRED: 4,
|
|
8974
8974
|
REJECTION_REASON_MISSING_SME_CONFIG: 5,
|
|
8975
8975
|
REJECTION_REASON_NOT_AVAILABLE_FOR_BULK: 6,
|
|
8976
|
-
REJECTION_REASON_NOT_AVAILABLE_FOR_SCHEDULED: 7
|
|
8976
|
+
REJECTION_REASON_NOT_AVAILABLE_FOR_SCHEDULED: 7,
|
|
8977
|
+
REJECTION_REASON_CARD_VERIFICATION_REQUIRED: 8,
|
|
8978
|
+
REJECTION_REASON_CARD_VERIFICATION_FAILED: 9
|
|
8977
8979
|
};
|
|
8978
8980
|
|
|
8979
8981
|
/**
|
|
@@ -10458,9 +10460,7 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.toObject =
|
|
|
10458
10460
|
userid: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
10459
10461
|
paymentmethodidsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
10460
10462
|
isscheduled: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
10461
|
-
isbulk: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
10462
|
-
applepaydetail: (f = msg.getApplepaydetail()) && proto.sniippaymentmethodsserviceapi.ApplePayDetail.toObject(includeInstance, f),
|
|
10463
|
-
googlepaydetail: (f = msg.getGooglepaydetail()) && proto.sniippaymentmethodsserviceapi.GooglePayDetail.toObject(includeInstance, f)
|
|
10463
|
+
isbulk: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
10464
10464
|
};
|
|
10465
10465
|
|
|
10466
10466
|
if (includeInstance) {
|
|
@@ -10521,16 +10521,6 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.deserialize
|
|
|
10521
10521
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
10522
10522
|
msg.setIsbulk(value);
|
|
10523
10523
|
break;
|
|
10524
|
-
case 6:
|
|
10525
|
-
var value = new proto.sniippaymentmethodsserviceapi.ApplePayDetail;
|
|
10526
|
-
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.ApplePayDetail.deserializeBinaryFromReader);
|
|
10527
|
-
msg.setApplepaydetail(value);
|
|
10528
|
-
break;
|
|
10529
|
-
case 7:
|
|
10530
|
-
var value = new proto.sniippaymentmethodsserviceapi.GooglePayDetail;
|
|
10531
|
-
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.GooglePayDetail.deserializeBinaryFromReader);
|
|
10532
|
-
msg.setGooglepaydetail(value);
|
|
10533
|
-
break;
|
|
10534
10524
|
default:
|
|
10535
10525
|
reader.skipField();
|
|
10536
10526
|
break;
|
|
@@ -10595,22 +10585,6 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.serializeBi
|
|
|
10595
10585
|
f
|
|
10596
10586
|
);
|
|
10597
10587
|
}
|
|
10598
|
-
f = message.getApplepaydetail();
|
|
10599
|
-
if (f != null) {
|
|
10600
|
-
writer.writeMessage(
|
|
10601
|
-
6,
|
|
10602
|
-
f,
|
|
10603
|
-
proto.sniippaymentmethodsserviceapi.ApplePayDetail.serializeBinaryToWriter
|
|
10604
|
-
);
|
|
10605
|
-
}
|
|
10606
|
-
f = message.getGooglepaydetail();
|
|
10607
|
-
if (f != null) {
|
|
10608
|
-
writer.writeMessage(
|
|
10609
|
-
7,
|
|
10610
|
-
f,
|
|
10611
|
-
proto.sniippaymentmethodsserviceapi.GooglePayDetail.serializeBinaryToWriter
|
|
10612
|
-
);
|
|
10613
|
-
}
|
|
10614
10588
|
};
|
|
10615
10589
|
|
|
10616
10590
|
|
|
@@ -10742,80 +10716,6 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.s
|
|
|
10742
10716
|
};
|
|
10743
10717
|
|
|
10744
10718
|
|
|
10745
|
-
/**
|
|
10746
|
-
* optional ApplePayDetail applePayDetail = 6;
|
|
10747
|
-
* @return {?proto.sniippaymentmethodsserviceapi.ApplePayDetail}
|
|
10748
|
-
*/
|
|
10749
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.getApplepaydetail = function() {
|
|
10750
|
-
return /** @type{?proto.sniippaymentmethodsserviceapi.ApplePayDetail} */ (
|
|
10751
|
-
jspb.Message.getWrapperField(this, proto.sniippaymentmethodsserviceapi.ApplePayDetail, 6));
|
|
10752
|
-
};
|
|
10753
|
-
|
|
10754
|
-
|
|
10755
|
-
/**
|
|
10756
|
-
* @param {?proto.sniippaymentmethodsserviceapi.ApplePayDetail|undefined} value
|
|
10757
|
-
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest} returns this
|
|
10758
|
-
*/
|
|
10759
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.setApplepaydetail = function(value) {
|
|
10760
|
-
return jspb.Message.setWrapperField(this, 6, value);
|
|
10761
|
-
};
|
|
10762
|
-
|
|
10763
|
-
|
|
10764
|
-
/**
|
|
10765
|
-
* Clears the message field making it undefined.
|
|
10766
|
-
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest} returns this
|
|
10767
|
-
*/
|
|
10768
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.clearApplepaydetail = function() {
|
|
10769
|
-
return this.setApplepaydetail(undefined);
|
|
10770
|
-
};
|
|
10771
|
-
|
|
10772
|
-
|
|
10773
|
-
/**
|
|
10774
|
-
* Returns whether this field is set.
|
|
10775
|
-
* @return {boolean}
|
|
10776
|
-
*/
|
|
10777
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.hasApplepaydetail = function() {
|
|
10778
|
-
return jspb.Message.getField(this, 6) != null;
|
|
10779
|
-
};
|
|
10780
|
-
|
|
10781
|
-
|
|
10782
|
-
/**
|
|
10783
|
-
* optional GooglePayDetail googlePayDetail = 7;
|
|
10784
|
-
* @return {?proto.sniippaymentmethodsserviceapi.GooglePayDetail}
|
|
10785
|
-
*/
|
|
10786
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.getGooglepaydetail = function() {
|
|
10787
|
-
return /** @type{?proto.sniippaymentmethodsserviceapi.GooglePayDetail} */ (
|
|
10788
|
-
jspb.Message.getWrapperField(this, proto.sniippaymentmethodsserviceapi.GooglePayDetail, 7));
|
|
10789
|
-
};
|
|
10790
|
-
|
|
10791
|
-
|
|
10792
|
-
/**
|
|
10793
|
-
* @param {?proto.sniippaymentmethodsserviceapi.GooglePayDetail|undefined} value
|
|
10794
|
-
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest} returns this
|
|
10795
|
-
*/
|
|
10796
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.setGooglepaydetail = function(value) {
|
|
10797
|
-
return jspb.Message.setWrapperField(this, 7, value);
|
|
10798
|
-
};
|
|
10799
|
-
|
|
10800
|
-
|
|
10801
|
-
/**
|
|
10802
|
-
* Clears the message field making it undefined.
|
|
10803
|
-
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest} returns this
|
|
10804
|
-
*/
|
|
10805
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.clearGooglepaydetail = function() {
|
|
10806
|
-
return this.setGooglepaydetail(undefined);
|
|
10807
|
-
};
|
|
10808
|
-
|
|
10809
|
-
|
|
10810
|
-
/**
|
|
10811
|
-
* Returns whether this field is set.
|
|
10812
|
-
* @return {boolean}
|
|
10813
|
-
*/
|
|
10814
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodAvailabilityRequest.prototype.hasGooglepaydetail = function() {
|
|
10815
|
-
return jspb.Message.getField(this, 7) != null;
|
|
10816
|
-
};
|
|
10817
|
-
|
|
10818
|
-
|
|
10819
10719
|
|
|
10820
10720
|
|
|
10821
10721
|
|