@tiwater/office-mcp 0.21.59 → 0.21.60
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/contracts/pptx_apply_format.schema.json +2 -1
- package/office/contracts/tiwater-office-provider-contract-manifest-v1.json +3 -3
- package/office/index.mjs +1 -1
- package/package.json +1 -1
- package/pdf/contracts/tiwater-pdf-provider-contract-manifest-v1.json +1 -1
- package/text/contracts/tiwater-text-provider-contract-manifest-v1.json +1 -1
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"x-tiwater-file-role": "read", "x-tiwater-document-revision-role": "current"
|
|
10
10
|
},
|
|
11
11
|
"changes": {
|
|
12
|
-
"
|
|
12
|
+
"description": "Formatting operations to apply. An empty array is valid: it materializes an unchanged output and a passing receipt with zero operation and applied counts.",
|
|
13
|
+
"minItems": 0,
|
|
13
14
|
"type": "array",
|
|
14
15
|
"items": {
|
|
15
16
|
"type": "object",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"schema": "tiwater.office-provider-contract-manifest/v1",
|
|
3
3
|
"provider": {
|
|
4
4
|
"id": "@tiwater/office-mcp",
|
|
5
|
-
"version": "0.21.
|
|
5
|
+
"version": "0.21.60"
|
|
6
6
|
},
|
|
7
7
|
"tools": [
|
|
8
8
|
{
|
|
@@ -383,11 +383,11 @@
|
|
|
383
383
|
"name": "pptx_apply_format",
|
|
384
384
|
"providerContract": {
|
|
385
385
|
"source": "packages/pptx-cli/contracts/mcp-input/pptx_apply_format.schema.json",
|
|
386
|
-
"sha256": "
|
|
386
|
+
"sha256": "860bed4e102fae68cf94437f54152ace275defffce9d1d1811ae9fbf13f25d4f"
|
|
387
387
|
},
|
|
388
388
|
"inputContract": {
|
|
389
389
|
"path": "office/contracts/pptx_apply_format.schema.json",
|
|
390
|
-
"sha256": "
|
|
390
|
+
"sha256": "860bed4e102fae68cf94437f54152ace275defffce9d1d1811ae9fbf13f25d4f"
|
|
391
391
|
}
|
|
392
392
|
},
|
|
393
393
|
{
|
package/office/index.mjs
CHANGED
|
@@ -932,7 +932,7 @@ const tools = [
|
|
|
932
932
|
{
|
|
933
933
|
name: 'pptx_apply_format',
|
|
934
934
|
effectKind: 'document-mutation',
|
|
935
|
-
description: 'Apply one deterministic PPTX formatting plan to a current presentation. This tool executes published formatting operations; it does not derive values, coordinates, or business decisions.',
|
|
935
|
+
description: 'Apply one deterministic PPTX formatting plan to a current presentation. This tool executes published formatting operations; it does not derive values, coordinates, or business decisions. When no formatting change is required, pass an empty changes array to materialize an unchanged output and a passing receipt with zero operation and applied counts.',
|
|
936
936
|
inputSchema: inputContract('pptx_apply_format'),
|
|
937
937
|
outputSchema: fixedEditOutput('pptx_apply_format'),
|
|
938
938
|
handler: (args, tool) => fixedEdit(tool, args, pptxCandidates),
|
package/package.json
CHANGED