@sniipwebmaster/cybersource-client-grpcweb 25.3.655 → 25.3.667
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 +31 -1
- package/package.json +1 -1
|
@@ -3003,7 +3003,8 @@ proto.cybersourceserviceapi.PayerAuthenticationResponse.toObject = function(incl
|
|
|
3003
3003
|
is3dsenrolled: jspb.Message.getBooleanFieldWithDefault(msg, 1, false),
|
|
3004
3004
|
threedsissuerurl: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
3005
3005
|
cardvalidationid: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
3006
|
-
responsecode: (f = msg.getResponsecode()) && proto.cybersourceserviceapi.ResponseCode.toObject(includeInstance, f)
|
|
3006
|
+
responsecode: (f = msg.getResponsecode()) && proto.cybersourceserviceapi.ResponseCode.toObject(includeInstance, f),
|
|
3007
|
+
redirecturlafterverification: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
3007
3008
|
};
|
|
3008
3009
|
|
|
3009
3010
|
if (includeInstance) {
|
|
@@ -3057,6 +3058,10 @@ proto.cybersourceserviceapi.PayerAuthenticationResponse.deserializeBinaryFromRea
|
|
|
3057
3058
|
reader.readMessage(value,proto.cybersourceserviceapi.ResponseCode.deserializeBinaryFromReader);
|
|
3058
3059
|
msg.setResponsecode(value);
|
|
3059
3060
|
break;
|
|
3061
|
+
case 5:
|
|
3062
|
+
var value = /** @type {string} */ (reader.readString());
|
|
3063
|
+
msg.setRedirecturlafterverification(value);
|
|
3064
|
+
break;
|
|
3060
3065
|
default:
|
|
3061
3066
|
reader.skipField();
|
|
3062
3067
|
break;
|
|
@@ -3115,6 +3120,13 @@ proto.cybersourceserviceapi.PayerAuthenticationResponse.serializeBinaryToWriter
|
|
|
3115
3120
|
proto.cybersourceserviceapi.ResponseCode.serializeBinaryToWriter
|
|
3116
3121
|
);
|
|
3117
3122
|
}
|
|
3123
|
+
f = message.getRedirecturlafterverification();
|
|
3124
|
+
if (f.length > 0) {
|
|
3125
|
+
writer.writeString(
|
|
3126
|
+
5,
|
|
3127
|
+
f
|
|
3128
|
+
);
|
|
3129
|
+
}
|
|
3118
3130
|
};
|
|
3119
3131
|
|
|
3120
3132
|
|
|
@@ -3209,6 +3221,24 @@ proto.cybersourceserviceapi.PayerAuthenticationResponse.prototype.hasResponsecod
|
|
|
3209
3221
|
};
|
|
3210
3222
|
|
|
3211
3223
|
|
|
3224
|
+
/**
|
|
3225
|
+
* optional string redirectUrlAfterVerification = 5;
|
|
3226
|
+
* @return {string}
|
|
3227
|
+
*/
|
|
3228
|
+
proto.cybersourceserviceapi.PayerAuthenticationResponse.prototype.getRedirecturlafterverification = function() {
|
|
3229
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
3230
|
+
};
|
|
3231
|
+
|
|
3232
|
+
|
|
3233
|
+
/**
|
|
3234
|
+
* @param {string} value
|
|
3235
|
+
* @return {!proto.cybersourceserviceapi.PayerAuthenticationResponse} returns this
|
|
3236
|
+
*/
|
|
3237
|
+
proto.cybersourceserviceapi.PayerAuthenticationResponse.prototype.setRedirecturlafterverification = function(value) {
|
|
3238
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
3239
|
+
};
|
|
3240
|
+
|
|
3241
|
+
|
|
3212
3242
|
|
|
3213
3243
|
|
|
3214
3244
|
|