chore: prepare 2026.4.6-beta.1 release

This commit is contained in:
Peter Steinberger
2026-04-06 03:33:40 +01:00
parent 1e9289f535
commit 072e0795f8
9 changed files with 153 additions and 11 deletions

View File

@@ -8977,6 +8977,144 @@ export const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA = [
additionalProperties: false,
},
},
{
pluginId: "qa-channel",
channelId: "qa-channel",
label: "QA Channel",
description: "Synthetic Slack-class transport for automated OpenClaw QA scenarios.",
schema: {
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
name: {
type: "string",
},
enabled: {
type: "boolean",
},
baseUrl: {
type: "string",
format: "uri",
},
botUserId: {
type: "string",
},
botDisplayName: {
type: "string",
},
pollTimeoutMs: {
type: "integer",
minimum: 100,
maximum: 30000,
},
allowFrom: {
type: "array",
items: {
anyOf: [
{
type: "string",
},
{
type: "number",
},
],
},
},
defaultTo: {
type: "string",
},
actions: {
type: "object",
properties: {
messages: {
type: "boolean",
},
reactions: {
type: "boolean",
},
search: {
type: "boolean",
},
threads: {
type: "boolean",
},
},
additionalProperties: false,
},
accounts: {
type: "object",
propertyNames: {
type: "string",
},
additionalProperties: {
type: "object",
properties: {
name: {
type: "string",
},
enabled: {
type: "boolean",
},
baseUrl: {
type: "string",
format: "uri",
},
botUserId: {
type: "string",
},
botDisplayName: {
type: "string",
},
pollTimeoutMs: {
type: "integer",
minimum: 100,
maximum: 30000,
},
allowFrom: {
type: "array",
items: {
anyOf: [
{
type: "string",
},
{
type: "number",
},
],
},
},
defaultTo: {
type: "string",
},
actions: {
type: "object",
properties: {
messages: {
type: "boolean",
},
reactions: {
type: "boolean",
},
search: {
type: "boolean",
},
threads: {
type: "boolean",
},
},
additionalProperties: false,
},
},
additionalProperties: false,
},
},
defaultAccount: {
type: "string",
},
},
additionalProperties: false,
},
},
{
pluginId: "qqbot",
channelId: "qqbot",

View File

@@ -26564,6 +26564,6 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
tags: ["advanced", "url-secret"],
},
},
version: "2026.4.5",
version: "2026.4.6-beta.1",
generatedAt: "2026-03-22T21:17:33.302Z",
};