@tiwater/office-mcp 0.21.40 → 0.21.41
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/docx_replace_content_from_source.schema.json +2 -2
- package/office/contracts/docx_set_table.schema.json +1 -1
- package/office/contracts/tiwater-office-provider-contract-manifest-v1.json +5 -5
- 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
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
},
|
|
72
72
|
"range": {
|
|
73
73
|
"type": "object",
|
|
74
|
-
"description": "Optional Unicode-scalar substring of the selected object's observed text. For a cell, offsets use its docx_read_table text with one newline between direct paragraphs. The selected native runs and paragraph boundaries are retained. Omit it to copy the complete selected object.",
|
|
74
|
+
"description": "Optional Unicode-scalar substring of the selected object's observed text. For a cell, offsets use its docx_read_table text with one newline between direct paragraphs. Length zero selects empty content and clears the target. The selected native runs and paragraph boundaries are retained. Omit it to copy the complete selected object.",
|
|
75
75
|
"properties": {
|
|
76
76
|
"start": {
|
|
77
77
|
"type": "integer",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
},
|
|
81
81
|
"length": {
|
|
82
82
|
"type": "integer",
|
|
83
|
-
"
|
|
83
|
+
"minimum": 0,
|
|
84
84
|
"maximum": 9007199254740991
|
|
85
85
|
}
|
|
86
86
|
},
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"range": {
|
|
81
81
|
"type": "object", "properties": {
|
|
82
82
|
"start": { "type": "integer", "minimum": 0, "maximum": 9007199254740991 },
|
|
83
|
-
"length": { "type": "integer", "minimum":
|
|
83
|
+
"length": { "type": "integer", "minimum": 0, "maximum": 9007199254740991 }
|
|
84
84
|
}, "required": ["start", "length"], "additionalProperties": false
|
|
85
85
|
}
|
|
86
86
|
}, "required": ["address"], "additionalProperties": false
|
|
@@ -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.41"
|
|
6
6
|
},
|
|
7
7
|
"tools": [
|
|
8
8
|
{
|
|
@@ -174,11 +174,11 @@
|
|
|
174
174
|
"name": "docx_replace_content_from_source",
|
|
175
175
|
"providerContract": {
|
|
176
176
|
"source": "packages/docx-cli/contracts/mcp-input/docx_replace_content_from_source.schema.json",
|
|
177
|
-
"sha256": "
|
|
177
|
+
"sha256": "9e739afeeda64a6014f180f97667402e98a4b0c8a79a182d6a6ef7a1c5f31cff"
|
|
178
178
|
},
|
|
179
179
|
"inputContract": {
|
|
180
180
|
"path": "office/contracts/docx_replace_content_from_source.schema.json",
|
|
181
|
-
"sha256": "
|
|
181
|
+
"sha256": "9e739afeeda64a6014f180f97667402e98a4b0c8a79a182d6a6ef7a1c5f31cff"
|
|
182
182
|
}
|
|
183
183
|
},
|
|
184
184
|
{
|
|
@@ -207,11 +207,11 @@
|
|
|
207
207
|
"name": "docx_set_table",
|
|
208
208
|
"providerContract": {
|
|
209
209
|
"source": "packages/docx-cli/contracts/mcp-input/docx_set_table.schema.json",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "d9a9f09ee3ca13764120bcf58e501a3edc508333b01aa4e6d299db8ba7bf2834"
|
|
211
211
|
},
|
|
212
212
|
"inputContract": {
|
|
213
213
|
"path": "office/contracts/docx_set_table.schema.json",
|
|
214
|
-
"sha256": "
|
|
214
|
+
"sha256": "d9a9f09ee3ca13764120bcf58e501a3edc508333b01aa4e6d299db8ba7bf2834"
|
|
215
215
|
}
|
|
216
216
|
},
|
|
217
217
|
{
|
package/package.json
CHANGED