fix: recover from expired enterprise auth on remote config load (#31661)

This commit is contained in:
Ayush Thakur 2026-06-10 20:32:09 +05:30 committed by GitHub
commit 02608a4e97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 67 additions and 7 deletions

View file

@ -32,3 +32,8 @@ export const DirectoryTypoError = NamedError.create("ConfigDirectoryTypoError",
dir: Schema.String,
suggestion: Schema.String,
})
export const RemoteAuthError = NamedError.create("ConfigRemoteAuthError", {
url: Schema.String,
remote: Schema.String,
})