(error)
| 3628 | } |
| 3629 | |
| 3630 | function isStep9RecoverableAuthError(error) { |
| 3631 | const message = String(typeof error === 'string' ? error : error?.message || ''); |
| 3632 | return /STEP9_OAUTH_RETRY::/i.test(message) |
| 3633 | || isRecoverableStep9AuthFailure(message); |
| 3634 | } |
| 3635 | |
| 3636 | function isLegacyStep9RecoverableAuthError(error) { |
| 3637 | const message = String(typeof error === 'string' ? error : error?.message || ''); |
nothing calls this directly
no test coverage detected