ci: auto build & obfuscate [2026-05-16 19:16:28] (Jenkins #21)

This commit is contained in:
Jenkins CI
2026-05-16 19:16:28 +08:00
parent 4bc6e0a047
commit d9fa3072a2
46 changed files with 4154 additions and 1584 deletions

View File

@@ -0,0 +1,38 @@
/**
* @file 表格相关数据形状DTO
* 对应运行时存于 message.extra.amily2_tables_data 的结构。
*/
/**
* 单元格内容;空值约定为空串而非 null/undefined。
* @typedef {string} Cell
*/
/**
* 行状态。'pending-deletion' 表示已标记待删除(延迟删除机制)。
* @typedef {'normal' | 'pending-deletion'} RowStatus
*/
/**
* 单张表格。
* @typedef {Object} Table
* @property {string} name 表格名(唯一标识 + UI 显示名)
* @property {string[]} headers 列头数组,长度 = 列数
* @property {Cell[][]} rows 行数据二维数组rows[i].length = headers.length
* @property {RowStatus[]} [rowStatuses] 行状态数组,与 rows 等长
* @property {(number|null)[]} [columnWidths] 列宽数组UI 用),与 headers 等长null 表示自适应
* @property {string} [note] 表格说明
* @property {string} [rule_add] 添加行规则(自然语言)
* @property {string} [rule_delete] 删除行规则
* @property {string} [rule_update] 更新行规则
* @property {Object<string, number>} [charLimitRules] 多列字符限制:{ "colIndexStr": maxChars }
* @property {number} [rowLimitRule] 行数上限0 表示不限
* @property {number} [simplifyRowThreshold] 历史行简化阈值0 表示不简化
*/
/**
* 表格集合 = 全局状态。
* @typedef {Table[]} TableState
*/
export {};