(error)
| 87 | } |
| 88 | |
| 89 | function isStep9RecoverableAuthError(error) { |
| 90 | const message = String(typeof error === 'string' ? error : error?.message || ''); |
| 91 | return /STEP9_OAUTH_RETRY::/i.test(message) |
| 92 | || isRecoverableStep9AuthFailure(message); |
| 93 | } |
| 94 | |
| 95 | function isLegacyStep9RecoverableAuthError(error) { |
| 96 | const message = String(typeof error === 'string' ? error : error?.message || ''); |
nothing calls this directly
no test coverage detected