@tiwater/office-mcp 0.15.9 → 0.15.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/office/index.mjs
CHANGED
|
@@ -126,7 +126,7 @@ const docxFixedTools = [
|
|
|
126
126
|
{"name":"docx_set_table_cell_rich_text","description":"Set current body table cell rich text."},
|
|
127
127
|
{"name":"docx_insert_table_rows","description":"Insert rows into a current body table."},
|
|
128
128
|
{"name":"docx_delete_table_rows","description":"Delete current body table row ranges."},
|
|
129
|
-
{"name":"docx_replace_table_rows","description":"Replace current body table row
|
|
129
|
+
{"name":"docx_replace_table_rows","description":"Replace a current body table range with explicit final rows. Use when values must be regrouped, filtered, assigned to different semantic columns, or given explicit gridSpan/vMerge states; matching template-row styles are retained."},
|
|
130
130
|
{"name":"docx_insert_table_columns","description":"Insert columns into a current body table."},
|
|
131
131
|
{"name":"docx_set_table_width","description":"Set current body table widths."},
|
|
132
132
|
{"name":"docx_set_table_cell_alignment","description":"Set current body table cell alignment."},
|
|
@@ -227,7 +227,7 @@ const tools = [
|
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
name: 'docx_copy_table_range',
|
|
230
|
-
description: 'Copy contiguous source row
|
|
230
|
+
description: 'Copy contiguous source rows verbatim, one source row per output row, into a repeating target row pattern whose mapped vertical-merge topology already matches the source. This does not regroup rows, change semantic columns, remove translations, or rewrite values; use docx_replace_table_rows for those operations. Get row refs from list/find with kind=row; a merged physical cell may be selected only once.',
|
|
231
231
|
inputSchema: inputContract('docx_copy_table_range'),
|
|
232
232
|
outputSchema: fixedEditOutput('docx_copy_table_range'),
|
|
233
233
|
handler: args => fixedEdit('docx_copy_table_range', args),
|