@sniipwebmaster/payment-methods-client-grpcweb 26.2.7776 → 26.2.7794
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 +70 -1
- package/package.json +1 -1
|
@@ -51,6 +51,7 @@ goog.exportSymbol('proto.sniippaymentmethodsserviceapi.CardHashesForUserRequest'
|
|
|
51
51
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.CardHashesForUserResponse', null, global);
|
|
52
52
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.CardValidationResult', null, global);
|
|
53
53
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.Click2PayDetail', null, global);
|
|
54
|
+
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.Click2PayEnrollmentStatus', null, global);
|
|
54
55
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.ColourScheme', null, global);
|
|
55
56
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.CompleteClick2PayEnrollmentRequest', null, global);
|
|
56
57
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.CompleteClick2PayEnrollmentResponse', null, global);
|
|
@@ -17875,7 +17876,9 @@ proto.sniippaymentmethodsserviceapi.Click2PayDetail.toObject = function(includeI
|
|
|
17875
17876
|
isinternational: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
|
|
17876
17877
|
cardarturi: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
17877
17878
|
consumeremail: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
17878
|
-
tokenisationcreditcardid: jspb.Message.getFieldWithDefault(msg, 11, 0)
|
|
17879
|
+
tokenisationcreditcardid: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
|
17880
|
+
enrollmentstatus: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
17881
|
+
enrolledat: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
17879
17882
|
};
|
|
17880
17883
|
|
|
17881
17884
|
if (includeInstance) {
|
|
@@ -17956,6 +17959,14 @@ proto.sniippaymentmethodsserviceapi.Click2PayDetail.deserializeBinaryFromReader
|
|
|
17956
17959
|
var value = /** @type {number} */ (reader.readInt64());
|
|
17957
17960
|
msg.setTokenisationcreditcardid(value);
|
|
17958
17961
|
break;
|
|
17962
|
+
case 12:
|
|
17963
|
+
var value = /** @type {!proto.sniippaymentmethodsserviceapi.Click2PayEnrollmentStatus} */ (reader.readEnum());
|
|
17964
|
+
msg.setEnrollmentstatus(value);
|
|
17965
|
+
break;
|
|
17966
|
+
case 13:
|
|
17967
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17968
|
+
msg.setEnrolledat(value);
|
|
17969
|
+
break;
|
|
17959
17970
|
default:
|
|
17960
17971
|
reader.skipField();
|
|
17961
17972
|
break;
|
|
@@ -18062,6 +18073,20 @@ proto.sniippaymentmethodsserviceapi.Click2PayDetail.serializeBinaryToWriter = fu
|
|
|
18062
18073
|
f
|
|
18063
18074
|
);
|
|
18064
18075
|
}
|
|
18076
|
+
f = message.getEnrollmentstatus();
|
|
18077
|
+
if (f !== 0.0) {
|
|
18078
|
+
writer.writeEnum(
|
|
18079
|
+
12,
|
|
18080
|
+
f
|
|
18081
|
+
);
|
|
18082
|
+
}
|
|
18083
|
+
f = message.getEnrolledat();
|
|
18084
|
+
if (f.length > 0) {
|
|
18085
|
+
writer.writeString(
|
|
18086
|
+
13,
|
|
18087
|
+
f
|
|
18088
|
+
);
|
|
18089
|
+
}
|
|
18065
18090
|
};
|
|
18066
18091
|
|
|
18067
18092
|
|
|
@@ -18263,6 +18288,42 @@ proto.sniippaymentmethodsserviceapi.Click2PayDetail.prototype.setTokenisationcre
|
|
|
18263
18288
|
};
|
|
18264
18289
|
|
|
18265
18290
|
|
|
18291
|
+
/**
|
|
18292
|
+
* optional Click2PayEnrollmentStatus enrollmentStatus = 12;
|
|
18293
|
+
* @return {!proto.sniippaymentmethodsserviceapi.Click2PayEnrollmentStatus}
|
|
18294
|
+
*/
|
|
18295
|
+
proto.sniippaymentmethodsserviceapi.Click2PayDetail.prototype.getEnrollmentstatus = function() {
|
|
18296
|
+
return /** @type {!proto.sniippaymentmethodsserviceapi.Click2PayEnrollmentStatus} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
18297
|
+
};
|
|
18298
|
+
|
|
18299
|
+
|
|
18300
|
+
/**
|
|
18301
|
+
* @param {!proto.sniippaymentmethodsserviceapi.Click2PayEnrollmentStatus} value
|
|
18302
|
+
* @return {!proto.sniippaymentmethodsserviceapi.Click2PayDetail} returns this
|
|
18303
|
+
*/
|
|
18304
|
+
proto.sniippaymentmethodsserviceapi.Click2PayDetail.prototype.setEnrollmentstatus = function(value) {
|
|
18305
|
+
return jspb.Message.setProto3EnumField(this, 12, value);
|
|
18306
|
+
};
|
|
18307
|
+
|
|
18308
|
+
|
|
18309
|
+
/**
|
|
18310
|
+
* optional string enrolledAt = 13;
|
|
18311
|
+
* @return {string}
|
|
18312
|
+
*/
|
|
18313
|
+
proto.sniippaymentmethodsserviceapi.Click2PayDetail.prototype.getEnrolledat = function() {
|
|
18314
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
18315
|
+
};
|
|
18316
|
+
|
|
18317
|
+
|
|
18318
|
+
/**
|
|
18319
|
+
* @param {string} value
|
|
18320
|
+
* @return {!proto.sniippaymentmethodsserviceapi.Click2PayDetail} returns this
|
|
18321
|
+
*/
|
|
18322
|
+
proto.sniippaymentmethodsserviceapi.Click2PayDetail.prototype.setEnrolledat = function(value) {
|
|
18323
|
+
return jspb.Message.setProto3StringField(this, 13, value);
|
|
18324
|
+
};
|
|
18325
|
+
|
|
18326
|
+
|
|
18266
18327
|
|
|
18267
18328
|
|
|
18268
18329
|
|
|
@@ -31030,4 +31091,12 @@ proto.sniippaymentmethodsserviceapi.CardValidationResult = {
|
|
|
31030
31091
|
FORCE_VERIFICATION: 7
|
|
31031
31092
|
};
|
|
31032
31093
|
|
|
31094
|
+
/**
|
|
31095
|
+
* @enum {number}
|
|
31096
|
+
*/
|
|
31097
|
+
proto.sniippaymentmethodsserviceapi.Click2PayEnrollmentStatus = {
|
|
31098
|
+
CLICK2PAY_ENROLLMENT_STATUS_PENDING: 0,
|
|
31099
|
+
CLICK2PAY_ENROLLMENT_STATUS_ACTIVE: 1
|
|
31100
|
+
};
|
|
31101
|
+
|
|
31033
31102
|
goog.object.extend(exports, proto.sniippaymentmethodsserviceapi);
|