Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions extensions/test-utils/plugin-runtime-mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,12 +226,13 @@ export function createPluginRuntimeMock(overrides: DeepPartial<PluginRuntime> =
shouldHandleTextCommands:
vi.fn() as unknown as PluginRuntime["channel"]["commands"]["shouldHandleTextCommands"],
},
discord: {} as PluginRuntime["channel"]["discord"],
activity: {} as PluginRuntime["channel"]["activity"],
discord: {} as PluginRuntime["channel"]["discord"],
line: {} as PluginRuntime["channel"]["line"],
signal: {} as PluginRuntime["channel"]["signal"],
slack: {} as PluginRuntime["channel"]["slack"],
telegram: {} as PluginRuntime["channel"]["telegram"],
signal: {} as PluginRuntime["channel"]["signal"],
x: {} as PluginRuntime["channel"]["x"],
imessage: {} as PluginRuntime["channel"]["imessage"],
whatsapp: {} as PluginRuntime["channel"]["whatsapp"],
},
Expand Down
2 changes: 1 addition & 1 deletion extensions/x/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openclaw/x",
"version": "2026.3.3",
"version": "2026.3.8",
"description": "OpenClaw X (Twitter) channel plugin",
"type": "module",
"openclaw": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qverisai/qverisbot",
"version": "2026.3.3",
"version": "2026.3.8",
"description": "QVerisBot - OpenClaw-based professional AI assistant with QVeris toolbox integrations",
"keywords": [],
"homepage": "https://qveris.ai",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/auth-choice.apply.openai.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe("applyAuthChoiceOpenAI", () => {
const prompter = createWizardPrompter({});
const runtime = createExitThrowingRuntime();

await applyAuthChoiceOpenAI({
const result = await applyAuthChoiceOpenAI({
authChoice: "apiKey",
config: {},
prompter,
Expand Down
1 change: 1 addition & 0 deletions src/daemon/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export type GatewayService = {
programArguments: string[];
workingDirectory?: string;
environment?: Record<string, string>;
environmentValueSources?: Record<string, "inline" | "file">;
sourcePath?: string;
} | null>;
readRuntime: (env: Record<string, string | undefined>) => Promise<GatewayServiceRuntime>;
Expand Down
1 change: 1 addition & 0 deletions src/daemon/systemd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export async function readSystemdServiceExecStart(
programArguments: string[];
workingDirectory?: string;
environment?: Record<string, string>;
environmentValueSources?: Record<string, "inline" | "file">;
sourcePath?: string;
} | null> {
const unitPath = resolveSystemdUnitPath(env);
Expand Down
Loading