@casys/mcp-erpnext 0.1.9 → 0.2.0
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/mcp-erpnext.mjs +3 -0
- package/package.json +1 -1
package/mcp-erpnext.mjs
CHANGED
|
@@ -30596,6 +30596,9 @@ var handleParsingAllValues = (form, key, value) => {
|
|
|
30596
30596
|
}
|
|
30597
30597
|
};
|
|
30598
30598
|
var handleParsingNestedValues = (form, key, value) => {
|
|
30599
|
+
if (/(?:^|\.)__proto__\./.test(key)) {
|
|
30600
|
+
return;
|
|
30601
|
+
}
|
|
30599
30602
|
let nestedForm = form;
|
|
30600
30603
|
const keys = key.split(".");
|
|
30601
30604
|
keys.forEach((key2, index) => {
|