Skip to content

Commit

Permalink
use passed and expiresAt from response, expose _id and failureReasons
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpatrick committed Aug 12, 2024
1 parent 2623cd5 commit 3f3aefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,12 +218,12 @@ export interface RadarTrackResponse extends RadarResponse {
}

export interface RadarTrackVerifiedResponse extends RadarTrackResponse {
_id?: string;
token?: String;
expiresAt?: Date;
expiresIn?: number;
passed?: boolean;
failureReasons?: string[];
_id?: string;
}

export interface RadarContextResponse extends RadarResponse {
Expand Down

0 comments on commit 3f3aefb

Please sign in to comment.