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

推荐订阅源

P
Proofpoint News Feed
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
量子位
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
IT之家
IT之家
V
Visual Studio Blog
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
D
Docker
V
V2EX

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 zalo helper exports · openclaw/openclaw@f7...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -7,7 +7,7 @@ import {

77

type SecretTargetRegistryEntry,

88

} from "openclaw/plugin-sdk/channel-secret-basic-runtime";

99
10-

export const secretTargetRegistryEntries = [

10+

export const secretTargetRegistryEntries: SecretTargetRegistryEntry[] = [

1111

{

1212

id: "channels.zalo.accounts.*.botToken",

1313

targetType: "channels.zalo.accounts.*.botToken",

@@ -52,7 +52,7 @@ export const secretTargetRegistryEntries = [

5252

includeInConfigure: true,

5353

includeInAudit: true,

5454

},

55-

] satisfies SecretTargetRegistryEntry[];

55+

];

5656
5757

export function collectRuntimeConfigAssignments(params: {

5858

config: { channels?: Record<string, unknown> };

Original file line numberDiff line numberDiff line change

@@ -6,7 +6,7 @@ import { sendMessage, sendPhoto } from "./api.js";

66

import { resolveZaloProxyFetch } from "./proxy.js";

77

import { resolveZaloToken } from "./token.js";

88
9-

export type ZaloSendOptions = {

9+

type ZaloSendOptions = {

1010

token?: string;

1111

accountId?: string;

1212

cfg?: OpenClawConfig;

@@ -16,7 +16,7 @@ export type ZaloSendOptions = {

1616

proxy?: string;

1717

};

1818
19-

export type ZaloSendResult = {

19+

type ZaloSendResult = {

2020

ok: boolean;

2121

messageId?: string;

2222

error?: string;

Original file line numberDiff line numberDiff line change

@@ -10,7 +10,7 @@ function resolveLifecycleAllowFrom(params: {

1010

return params.allowFrom ?? (params.dmPolicy === "open" ? ["*"] : undefined);

1111

}

1212
13-

export function createLifecycleConfig(params: {

13+

function createLifecycleConfig(params: {

1414

accountId: string;

1515

dmPolicy: "open" | "pairing";

1616

allowFrom?: string[];

@@ -38,7 +38,7 @@ export function createLifecycleConfig(params: {

3838

} as OpenClawConfig;

3939

}

4040
41-

export function createLifecycleAccount(params: {

41+

function createLifecycleAccount(params: {

4242

accountId: string;

4343

dmPolicy: "open" | "pairing";

4444

allowFrom?: string[];

@@ -359,7 +359,7 @@ export async function settleAsyncWork(): Promise<void> {

359359

}

360360

}

361361
362-

export async function postWebhookUpdate(params: {

362+

async function postWebhookUpdate(params: {

363363

baseUrl: string;

364364

path: string;

365365

secret: string;

Original file line numberDiff line numberDiff line change

@@ -51,11 +51,8 @@ const lifecycleMocks = vi.hoisted(

5151

}),

5252

);

5353
54-

export const setWebhookMock = lifecycleMocks.setWebhookMock;

55-

export const deleteWebhookMock = lifecycleMocks.deleteWebhookMock;

56-

export const getWebhookInfoMock = lifecycleMocks.getWebhookInfoMock;

54+

const setWebhookMock = lifecycleMocks.setWebhookMock;

5755

export const getUpdatesMock = lifecycleMocks.getUpdatesMock;

58-

export const sendChatActionMock = lifecycleMocks.sendChatActionMock;

5956

export const sendMessageMock = lifecycleMocks.sendMessageMock;

6057

export const sendPhotoMock = lifecycleMocks.sendPhotoMock;

6158

export const getZaloRuntimeMock: UnknownMock = lifecycleMocks.getZaloRuntimeMock;

@@ -128,7 +125,7 @@ export function setLifecycleRuntimeCore(

128125

);

129126

}

130127
131-

export async function loadLifecycleMonitorModule(): Promise<MonitorModule> {

128+

async function loadLifecycleMonitorModule(): Promise<MonitorModule> {

132129

return await importMonitorModule({ cacheBust: "monitor", mocked: true });

133130

}

134131
Original file line numberDiff line numberDiff line change

@@ -5,7 +5,7 @@ import { resolveAccountEntry } from "openclaw/plugin-sdk/routing";

55

import { normalizeResolvedSecretInputString, normalizeSecretInputString } from "./secret-input.js";

66

import type { ZaloConfig } from "./types.js";

77
8-

export type ZaloTokenResolution = BaseTokenResolution & {

8+

type ZaloTokenResolution = BaseTokenResolution & {

99

source: "env" | "config" | "configFile" | "none";

1010

};

1111
Original file line numberDiff line numberDiff line change

@@ -38,7 +38,7 @@ export type ZaloConfig = {

3838

defaultAccount?: string;

3939

} & ZaloAccountConfig;

4040
41-

export type ZaloTokenSource = "env" | "config" | "configFile" | "none";

41+

type ZaloTokenSource = "env" | "config" | "configFile" | "none";

4242
4343

export type ResolvedZaloAccount = {

4444

accountId: string;