mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-05 16:10:24 +00:00
chore(lint): clear extension lint regressions and add #63416 changelog
This commit is contained in:
@@ -138,7 +138,7 @@ function warnDeprecatedUsersEmailEntries(logVerbose: (message: string) => void,
|
||||
}
|
||||
const key = deprecated
|
||||
.map((v) => normalizeLowercaseStringOrEmpty(v))
|
||||
.toSorted()
|
||||
.toSorted((a, b) => a.localeCompare(b))
|
||||
.join(",");
|
||||
if (warnedDeprecatedUsersEmailAllowFrom.has(key)) {
|
||||
return;
|
||||
@@ -161,7 +161,7 @@ function warnMutableGroupKeysConfigured(
|
||||
}
|
||||
const warningKey = mutableKeys
|
||||
.map((key) => normalizeLowercaseStringOrEmpty(key))
|
||||
.toSorted()
|
||||
.toSorted((a, b) => a.localeCompare(b))
|
||||
.join(",");
|
||||
if (warnedMutableGroupKeys.has(warningKey)) {
|
||||
return;
|
||||
|
||||
@@ -63,7 +63,7 @@ function resolveSecretInputRef(params: {
|
||||
function collectGoogleChatAccountAssignment(params: {
|
||||
target: GoogleChatAccountLike;
|
||||
path: string;
|
||||
defaults: SecretDefaults | undefined;
|
||||
defaults?: SecretDefaults;
|
||||
context: ResolverContext;
|
||||
active?: boolean;
|
||||
inactiveReason?: string;
|
||||
@@ -107,7 +107,7 @@ function collectGoogleChatAccountAssignment(params: {
|
||||
|
||||
export function collectRuntimeConfigAssignments(params: {
|
||||
config: { channels?: Record<string, unknown> };
|
||||
defaults: SecretDefaults | undefined;
|
||||
defaults?: SecretDefaults;
|
||||
context: ResolverContext;
|
||||
}): void {
|
||||
const resolved = getChannelSurface(params.config, "googlechat");
|
||||
|
||||
Reference in New Issue
Block a user