From 3f3aefb5501f94f8af96eb160805d2a858223fc7 Mon Sep 17 00:00:00 2001 From: Nick Patrick Date: Mon, 12 Aug 2024 06:07:53 -0400 Subject: [PATCH] use passed and expiresAt from response, expose _id and failureReasons --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index a09b103..0a53d3f 100644 --- a/src/types.ts +++ b/src/types.ts @@ -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 {