diff --git a/services/data/src/engine/types/FetchError.ts b/services/data/src/engine/types/FetchError.ts index 02c0ff42..71b195c4 100644 --- a/services/data/src/engine/types/FetchError.ts +++ b/services/data/src/engine/types/FetchError.ts @@ -1,10 +1,10 @@ export type FetchErrorTypeName = 'network' | 'unknown' | 'access' | 'aborted' export type FetchErrorDetails = { - errorCode?: number httpStatus?: string httpStatusCode?: number - message?: string status?: string + message?: string + errorCode?: string [x: string]: any }