Skip to content

Commit

Permalink
Deprecate emailTenure and ipTenure Subscore properties
Browse files Browse the repository at this point in the history
wesrice committed Oct 1, 2019
1 parent a7e1fe8 commit c136e26
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions src/response/records.ts
Original file line number Diff line number Diff line change
@@ -88,13 +88,34 @@ export interface Subscores {
readonly cvvResult?: number;
readonly emailAddress?: number;
readonly emailDomain?: number;
readonly emailTenure?: number;
readonly ipTenure?: number;
readonly issuerIdNumber?: number;
readonly orderAmount?: number;
readonly phoneNumber?: number;
readonly shippingAddressDistanceToIpLocation?: number;
readonly timeOfDay?: number;

/**
* Deprecated effective August 29, 2019.
*
* This subscore will default to 1 and will be removed in a future release.
* The user tenure on email is reflected in the [[Subscores.emailAddress]]
* output.
*
* @category Deprecated
* @deprecated
*/
readonly emailTenure?: number;

/**
* Deprecated effective August 29, 2019.
*
* This subscore will default to 1 and will be removed in a future release.
* The IP tenure is reflected in the [[Score.riskScore|overall risk score]].
*
* @category Deprecated
* @deprecated
*/
readonly ipTenure?: number;
}

export interface Warning {

0 comments on commit c136e26

Please sign in to comment.