chore: prepare 2026.3.28-beta.1 release

This commit is contained in:
Peter Steinberger
2026-03-28 22:24:28 +00:00
parent 143fb34bf9
commit 587e18cd3f
98 changed files with 362 additions and 292 deletions

View File

@@ -4247,7 +4247,7 @@ export const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA = [
pluginId: "googlechat",
channelId: "googlechat",
label: "Google Chat",
description: "Google Workspace Chat app via HTTP webhooks.",
description: "Google Workspace Chat app with HTTP webhook.",
schema: {
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
@@ -6233,7 +6233,7 @@ export const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA = [
pluginId: "line",
channelId: "line",
label: "LINE",
description: "LINE Messaging API bot for Japan/Taiwan/Thailand markets.",
description: "LINE Messaging API webhook bot.",
schema: {
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
@@ -6510,7 +6510,70 @@ export const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA = [
type: "string",
},
accessToken: {
type: "string",
anyOf: [
{
type: "string",
},
{
oneOf: [
{
type: "object",
properties: {
source: {
type: "string",
const: "env",
},
provider: {
type: "string",
pattern: "^[a-z][a-z0-9_-]{0,63}$",
},
id: {
type: "string",
pattern: "^[A-Z][A-Z0-9_]{0,127}$",
},
},
required: ["source", "provider", "id"],
additionalProperties: false,
},
{
type: "object",
properties: {
source: {
type: "string",
const: "file",
},
provider: {
type: "string",
pattern: "^[a-z][a-z0-9_-]{0,63}$",
},
id: {
type: "string",
},
},
required: ["source", "provider", "id"],
additionalProperties: false,
},
{
type: "object",
properties: {
source: {
type: "string",
const: "exec",
},
provider: {
type: "string",
pattern: "^[a-z][a-z0-9_-]{0,63}$",
},
id: {
type: "string",
},
},
required: ["source", "provider", "id"],
additionalProperties: false,
},
],
},
],
},
password: {
anyOf: [
@@ -7648,6 +7711,9 @@ export const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA = [
type: "string",
enum: ["length", "newline"],
},
blockStreaming: {
type: "boolean",
},
blockStreamingCoalesce: {
type: "object",
properties: {

View File

@@ -15510,6 +15510,6 @@ export const GENERATED_BASE_CONFIG_SCHEMA = {
tags: ["security", "auth"],
},
},
version: "2026.3.28",
version: "2026.3.28-beta.1",
generatedAt: "2026-03-22T21:17:33.302Z",
} as const satisfies BaseConfigSchemaResponse;