@qingflow-tech/qingflow-app-builder-mcp 1.0.28 → 1.0.29
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 +2 -2
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/src/qingflow_mcp/tools/record_tools.py +1 -2
package/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
Install:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @qingflow-tech/qingflow-app-builder-mcp@1.0.
|
|
6
|
+
npm install @qingflow-tech/qingflow-app-builder-mcp@1.0.29
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Run:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx -y -p @qingflow-tech/qingflow-app-builder-mcp@1.0.
|
|
12
|
+
npx -y -p @qingflow-tech/qingflow-app-builder-mcp@1.0.29 qingflow-app-builder-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Environment:
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
@@ -490,7 +490,6 @@ class RecordTools(ToolBase):
|
|
|
490
490
|
record_id: str = "",
|
|
491
491
|
columns: list[JSONObject | int] | None = None,
|
|
492
492
|
view_id: str | None = None,
|
|
493
|
-
workflow_node_id: int | None = None,
|
|
494
493
|
output_profile: str = "detail_context",
|
|
495
494
|
) -> JSONObject:
|
|
496
495
|
return self.record_get_public(
|
|
@@ -499,7 +498,7 @@ class RecordTools(ToolBase):
|
|
|
499
498
|
record_id=record_id,
|
|
500
499
|
columns=columns or [],
|
|
501
500
|
view_id=view_id,
|
|
502
|
-
workflow_node_id=
|
|
501
|
+
workflow_node_id=None,
|
|
503
502
|
output_profile=output_profile,
|
|
504
503
|
)
|
|
505
504
|
|