add missing error_description field

This commit is contained in:
Mark Nelissen
2019-04-09 14:43:32 +02:00
parent 0bb3d1863d
commit 2b65f71239

View File

@@ -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;