sap-adt-mcp 0.8.46 → 0.8.47
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/package.json +1 -1
- package/src/panel.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sap-adt-mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.47",
|
|
4
4
|
"mcpName": "io.github.yzonur/sap-adt-mcp",
|
|
5
5
|
"description": "MCP server giving Claude live access to SAP systems via ADT (ABAP Development Tools) REST. Read source, search, run syntax checks, and edit ABAP objects from any MCP-compatible client.",
|
|
6
6
|
"type": "module",
|
package/src/panel.js
CHANGED
|
@@ -697,7 +697,7 @@ function renderObject(out, data){
|
|
|
697
697
|
for(const [k,v] of Object.entries(data)){
|
|
698
698
|
if(v==null) continue;
|
|
699
699
|
const lk=k.toLowerCase();
|
|
700
|
-
if(CODE_KEYS.has(lk) || (typeof v==="string" && (v.indexOf("
|
|
700
|
+
if(CODE_KEYS.has(lk) || (typeof v==="string" && (v.indexOf("\\n")>=0 || v.length>160))){ codes.push([k,v]); }
|
|
701
701
|
else if(Array.isArray(v)){
|
|
702
702
|
if(v.length && isPlainObject(v[0])) tables.push([k,v]);
|
|
703
703
|
else if(v.length) scalarArrays.push([k,v]);
|