Enumerates the recovery actions available for different error types.
export enum ErrorRecoveryAction { RETRY = "retry", CHECK_CONNECTION = "check_connection", REFRESH_TOKEN = "refresh_token", WAIT_RATE_LIMIT = "wait_rate_limit", CONTACT_SUPPORT = "contact_support", NONE = "none",} Copy
export enum ErrorRecoveryAction { RETRY = "retry", CHECK_CONNECTION = "check_connection", REFRESH_TOKEN = "refresh_token", WAIT_RATE_LIMIT = "wait_rate_limit", CONTACT_SUPPORT = "contact_support", NONE = "none",}
Enumerates the recovery actions available for different error types.
Source