chore: refresh release metadata baselines

This commit is contained in:
Peter Steinberger
2026-05-01 22:14:56 +01:00
parent 019f4a5bb8
commit 0640db72b0
3 changed files with 7 additions and 625 deletions

View File

@@ -1,4 +1,4 @@
1deb67d0a40456e77cb67685f6ae2f14a8ddc2c4be488d4b1a1f1127598982dd config-baseline.json
ac7537ed5b5a2d9e7fa50977aa99f5e0babfbe1a93c7c14b93a184b36bb4f539 config-baseline.core.json
f3326cd9490169afefe93625f63699266b75db93855ed439c9692e3c286a990c config-baseline.channel.json
9a22f3ea41864de9cc754d7237a5e1403582f21eeec421463e3faa80a243e7de config-baseline.json
7fa5e58fa863a13f2b9e06ea0fc536304f21e4e8929068f96f93968de91d1aae config-baseline.core.json
c401cd3450f1737bc92418cfea301d20b54b7fbef9e6049834acc01af338e538 config-baseline.channel.json
7731a0b93cb335b56fac4c807447ba659fea51ea7a6cd844dc0ef5616669ee75 config-baseline.plugin.json

View File

@@ -1,2 +1,2 @@
42cb8c8be1e10a42891035fc402022ab1cc2eb941e7e69a9a2f8a6d01a30bd3e plugin-sdk-api-baseline.json
4bafb4519802e0daeb8458d9aed9b09d2fc51755f02d1568a368d814c6f7930a plugin-sdk-api-baseline.jsonl
8edcfb8af9862c6681bbf7fcba335943128ca7883e6982d0299eabcdf62386d4 plugin-sdk-api-baseline.json
5252b562f850cfe078903d3a3373ae5aa82041f6af8ccbc00fb9c94a89736e55 plugin-sdk-api-baseline.jsonl

View File

@@ -3567,7 +3567,7 @@ export const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA = [
},
"intents.voiceStates": {
label: "Discord Voice States Intent",
help: "Enable the Guild Voice States intent. Defaults to the effective Discord voice setting; set false for text-only gateway sessions even when voice config is present.",
help: "Enable the Guild Voice States intent. Defaults to the effective Discord voice setting; set true only for Discord voice channel conversations.",
},
gatewayInfoTimeoutMs: {
label: "Discord Gateway Metadata Timeout (ms)",
@@ -3575,7 +3575,7 @@ export const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA = [
},
"voice.enabled": {
label: "Discord Voice Enabled",
help: "Enable Discord voice channel conversations (default: true). Set false for text-only gateway sessions.",
help: "Enable Discord voice channel conversations. Text-only Discord configs leave voice off by default; set true to enable /vc commands and the Guild Voice States intent.",
},
"voice.model": {
label: "Discord Voice Model",
@@ -7814,624 +7814,6 @@ export const GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA = [
additionalProperties: false,
},
},
{
pluginId: "mattermost",
channelId: "mattermost",
label: "Mattermost",
description: "self-hosted Slack-style chat; install the plugin to enable.",
schema: {
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
name: {
type: "string",
},
capabilities: {
type: "array",
items: {
type: "string",
},
},
dangerouslyAllowNameMatching: {
type: "boolean",
},
markdown: {
type: "object",
properties: {
tables: {
type: "string",
enum: ["off", "bullets", "code", "block"],
},
},
additionalProperties: false,
},
enabled: {
type: "boolean",
},
configWrites: {
type: "boolean",
},
botToken: {
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,
},
],
},
],
},
baseUrl: {
type: "string",
},
chatmode: {
type: "string",
enum: ["oncall", "onmessage", "onchar"],
},
oncharPrefixes: {
type: "array",
items: {
type: "string",
},
},
requireMention: {
type: "boolean",
},
dmPolicy: {
default: "pairing",
type: "string",
enum: ["pairing", "allowlist", "open", "disabled"],
},
allowFrom: {
type: "array",
items: {
anyOf: [
{
type: "string",
},
{
type: "number",
},
],
},
},
groupAllowFrom: {
type: "array",
items: {
anyOf: [
{
type: "string",
},
{
type: "number",
},
],
},
},
groupPolicy: {
default: "allowlist",
type: "string",
enum: ["open", "disabled", "allowlist"],
},
textChunkLimit: {
type: "integer",
exclusiveMinimum: 0,
maximum: 9007199254740991,
},
chunkMode: {
type: "string",
enum: ["length", "newline"],
},
blockStreaming: {
type: "boolean",
},
blockStreamingCoalesce: {
type: "object",
properties: {
minChars: {
type: "integer",
exclusiveMinimum: 0,
maximum: 9007199254740991,
},
maxChars: {
type: "integer",
exclusiveMinimum: 0,
maximum: 9007199254740991,
},
idleMs: {
type: "integer",
minimum: 0,
maximum: 9007199254740991,
},
},
additionalProperties: false,
},
replyToMode: {
type: "string",
enum: ["off", "first", "all", "batched"],
},
responsePrefix: {
type: "string",
},
actions: {
type: "object",
properties: {
reactions: {
type: "boolean",
},
},
additionalProperties: false,
},
commands: {
type: "object",
properties: {
native: {
anyOf: [
{
type: "boolean",
},
{
type: "string",
const: "auto",
},
],
},
nativeSkills: {
anyOf: [
{
type: "boolean",
},
{
type: "string",
const: "auto",
},
],
},
callbackPath: {
type: "string",
},
callbackUrl: {
type: "string",
},
},
additionalProperties: false,
},
interactions: {
type: "object",
properties: {
callbackBaseUrl: {
type: "string",
},
allowedSourceIps: {
type: "array",
items: {
type: "string",
},
},
},
additionalProperties: false,
},
groups: {
type: "object",
propertyNames: {
type: "string",
},
additionalProperties: {
type: "object",
properties: {
requireMention: {
type: "boolean",
},
},
additionalProperties: false,
},
},
network: {
type: "object",
properties: {
dangerouslyAllowPrivateNetwork: {
type: "boolean",
},
},
additionalProperties: false,
},
dmChannelRetry: {
type: "object",
properties: {
maxRetries: {
type: "integer",
minimum: 0,
maximum: 10,
},
initialDelayMs: {
type: "integer",
minimum: 100,
maximum: 60000,
},
maxDelayMs: {
type: "integer",
minimum: 1000,
maximum: 60000,
},
timeoutMs: {
type: "integer",
minimum: 5000,
maximum: 120000,
},
},
additionalProperties: false,
},
accounts: {
type: "object",
propertyNames: {
type: "string",
},
additionalProperties: {
type: "object",
properties: {
name: {
type: "string",
},
capabilities: {
type: "array",
items: {
type: "string",
},
},
dangerouslyAllowNameMatching: {
type: "boolean",
},
markdown: {
type: "object",
properties: {
tables: {
type: "string",
enum: ["off", "bullets", "code", "block"],
},
},
additionalProperties: false,
},
enabled: {
type: "boolean",
},
configWrites: {
type: "boolean",
},
botToken: {
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,
},
],
},
],
},
baseUrl: {
type: "string",
},
chatmode: {
type: "string",
enum: ["oncall", "onmessage", "onchar"],
},
oncharPrefixes: {
type: "array",
items: {
type: "string",
},
},
requireMention: {
type: "boolean",
},
dmPolicy: {
default: "pairing",
type: "string",
enum: ["pairing", "allowlist", "open", "disabled"],
},
allowFrom: {
type: "array",
items: {
anyOf: [
{
type: "string",
},
{
type: "number",
},
],
},
},
groupAllowFrom: {
type: "array",
items: {
anyOf: [
{
type: "string",
},
{
type: "number",
},
],
},
},
groupPolicy: {
default: "allowlist",
type: "string",
enum: ["open", "disabled", "allowlist"],
},
textChunkLimit: {
type: "integer",
exclusiveMinimum: 0,
maximum: 9007199254740991,
},
chunkMode: {
type: "string",
enum: ["length", "newline"],
},
blockStreaming: {
type: "boolean",
},
blockStreamingCoalesce: {
type: "object",
properties: {
minChars: {
type: "integer",
exclusiveMinimum: 0,
maximum: 9007199254740991,
},
maxChars: {
type: "integer",
exclusiveMinimum: 0,
maximum: 9007199254740991,
},
idleMs: {
type: "integer",
minimum: 0,
maximum: 9007199254740991,
},
},
additionalProperties: false,
},
replyToMode: {
type: "string",
enum: ["off", "first", "all", "batched"],
},
responsePrefix: {
type: "string",
},
actions: {
type: "object",
properties: {
reactions: {
type: "boolean",
},
},
additionalProperties: false,
},
commands: {
type: "object",
properties: {
native: {
anyOf: [
{
type: "boolean",
},
{
type: "string",
const: "auto",
},
],
},
nativeSkills: {
anyOf: [
{
type: "boolean",
},
{
type: "string",
const: "auto",
},
],
},
callbackPath: {
type: "string",
},
callbackUrl: {
type: "string",
},
},
additionalProperties: false,
},
interactions: {
type: "object",
properties: {
callbackBaseUrl: {
type: "string",
},
allowedSourceIps: {
type: "array",
items: {
type: "string",
},
},
},
additionalProperties: false,
},
groups: {
type: "object",
propertyNames: {
type: "string",
},
additionalProperties: {
type: "object",
properties: {
requireMention: {
type: "boolean",
},
},
additionalProperties: false,
},
},
network: {
type: "object",
properties: {
dangerouslyAllowPrivateNetwork: {
type: "boolean",
},
},
additionalProperties: false,
},
dmChannelRetry: {
type: "object",
properties: {
maxRetries: {
type: "integer",
minimum: 0,
maximum: 10,
},
initialDelayMs: {
type: "integer",
minimum: 100,
maximum: 60000,
},
maxDelayMs: {
type: "integer",
minimum: 1000,
maximum: 60000,
},
timeoutMs: {
type: "integer",
minimum: 5000,
maximum: 120000,
},
},
additionalProperties: false,
},
},
required: ["dmPolicy", "groupPolicy"],
additionalProperties: false,
},
},
defaultAccount: {
type: "string",
},
},
required: ["dmPolicy", "groupPolicy"],
additionalProperties: false,
},
},
{
pluginId: "msteams",
channelId: "msteams",