From 2b65f71239b6580bac832207c03759855b445aab Mon Sep 17 00:00:00 2001 From: Mark Nelissen Date: Tue, 9 Apr 2019 14:43:32 +0200 Subject: [PATCH] add missing error_description field --- types/auth0-js/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/types/auth0-js/index.d.ts b/types/auth0-js/index.d.ts index ac2d32c5ac..cc36dd5a36 100644 --- a/types/auth0-js/index.d.ts +++ b/types/auth0-js/index.d.ts @@ -569,7 +569,9 @@ export type SpecErrorCodes = export interface Auth0Error { error: LibErrorCodes | SpecErrorCodes | string; - errorDescription: string; + errorDescription?: string; + // Auth0 is not consistent in the naming of the error description field + error_description?: string; // Need to include non-intuitive error fields that Auth0 uses code?: string; description?: string;