chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:22:33 +08:00
commit fc4fcbab58
1848 changed files with 472303 additions and 0 deletions
@@ -0,0 +1,14 @@
import CodexBarCore
import Foundation
extension SettingsStore {
var codebuffAPIToken: String {
get { self.configSnapshot.providerConfig(for: .codebuff)?.sanitizedAPIKey ?? "" }
set {
self.updateProviderConfig(provider: .codebuff) { entry in
entry.apiKey = self.normalizedConfigValue(newValue)
}
self.logSecretUpdate(provider: .codebuff, field: "apiKey", value: newValue)
}
}
}