@josephyan/qingflow-app-user-mcp 1.1.22 → 1.1.23
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/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
Install:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @josephyan/qingflow-app-user-mcp@1.1.
|
|
6
|
+
npm install @josephyan/qingflow-app-user-mcp@1.1.23
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Run:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx -y -p @josephyan/qingflow-app-user-mcp@1.1.
|
|
12
|
+
npx -y -p @josephyan/qingflow-app-user-mcp@1.1.23 qingflow-app-user-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Environment:
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
@@ -24897,8 +24897,8 @@ def _build_form_payload_for_edit_fields(
|
|
|
24897
24897
|
parsed_section_id = _coerce_positive_int(section.get("section_id"))
|
|
24898
24898
|
if parsed_section_id is not None:
|
|
24899
24899
|
wrapper["sectionId"] = parsed_section_id
|
|
24900
|
-
elif template is None and
|
|
24901
|
-
wrapper
|
|
24900
|
+
elif template is None and _coerce_positive_int(wrapper.get("sectionId")) is None:
|
|
24901
|
+
wrapper.pop("sectionId", None)
|
|
24902
24902
|
wrapper["innerQuestions"] = inner_rows
|
|
24903
24903
|
form_rows.append([wrapper])
|
|
24904
24904
|
|