惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
月光博客
月光博客
B
Blog RSS Feed
C
Check Point Blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
GbyAI
GbyAI
H
Help Net Security
Y
Y Combinator Blog
I
InfoQ
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
美团技术团队
博客园 - 三生石上(FineUI控件)
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
A
About on SuperTechFans
G
Google Developers Blog
爱范儿
爱范儿
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
人人都是产品经理
人人都是产品经理

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor: trim gateway auth canvas exports · openclaw/ope...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -8,12 +8,12 @@ import {

88

type SupportedGatewaySecretInputPath,

99

} from "./secret-input-paths.js";

101011-

export type GatewayAuthSecretInputPath = Extract<

11+

type GatewayAuthSecretInputPath = Extract<

1212

SupportedGatewaySecretInputPath,

1313

"gateway.auth.token" | "gateway.auth.password"

1414

>;

151516-

export type GatewayAuthSecretRefResolutionParams = {

16+

type GatewayAuthSecretRefResolutionParams = {

1717

cfg: OpenClawConfig;

1818

env: NodeJS.ProcessEnv;

1919

mode?: GatewayAuthConfig["mode"];

@@ -28,7 +28,7 @@ export function hasConfiguredGatewayAuthSecretInput(

2828

return hasConfiguredSecretInput(readGatewaySecretInputValue(cfg, path), cfg.secrets?.defaults);

2929

}

303031-

export function shouldResolveGatewayAuthSecretRef(params: {

31+

function shouldResolveGatewayAuthSecretRef(params: {

3232

mode?: GatewayAuthConfig["mode"];

3333

path: GatewayAuthSecretInputPath;

3434

hasPasswordCandidate: boolean;

@@ -51,7 +51,7 @@ export function shouldResolveGatewayAuthSecretRef(params: {

5151

return isTokenPath ? !params.hasPasswordCandidate : !params.hasTokenCandidate;

5252

}

535354-

export function shouldResolveGatewayTokenSecretRef(

54+

function shouldResolveGatewayTokenSecretRef(

5555

params: Omit<GatewayAuthSecretRefResolutionParams, "cfg" | "env">,

5656

): boolean {

5757

return shouldResolveGatewayAuthSecretRef({

@@ -62,7 +62,7 @@ export function shouldResolveGatewayTokenSecretRef(

6262

});

6363

}

646465-

export function shouldResolveGatewayPasswordSecretRef(

65+

function shouldResolveGatewayPasswordSecretRef(

6666

params: Omit<GatewayAuthSecretRefResolutionParams, "cfg" | "env">,

6767

): boolean {

6868

return shouldResolveGatewayAuthSecretRef({

@@ -73,7 +73,7 @@ export function shouldResolveGatewayPasswordSecretRef(

7373

});

7474

}

757576-

export async function resolveGatewayAuthSecretRefValue(params: {

76+

async function resolveGatewayAuthSecretRefValue(params: {

7777

cfg: OpenClawConfig;

7878

env: NodeJS.ProcessEnv;

7979

path: GatewayAuthSecretInputPath;

@@ -116,7 +116,7 @@ export async function resolveGatewayPasswordSecretRefValue(

116116

});

117117

}

118118119-

export async function resolveGatewayAuthSecretRef(params: {

119+

async function resolveGatewayAuthSecretRef(params: {

120120

cfg: OpenClawConfig;

121121

env: NodeJS.ProcessEnv;

122122

path: GatewayAuthSecretInputPath;

@@ -137,7 +137,7 @@ export async function resolveGatewayAuthSecretRef(params: {

137137

return nextConfig;

138138

}

139139140-

export async function resolveGatewayPasswordSecretRef(params: {

140+

async function resolveGatewayPasswordSecretRef(params: {

141141

cfg: OpenClawConfig;

142142

env: NodeJS.ProcessEnv;

143143

mode?: GatewayAuthConfig["mode"];