@josephyan/qingflow-app-user-mcp 0.2.0-beta.42 → 0.2.0-beta.43
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@0.2.0-beta.
|
|
6
|
+
npm install @josephyan/qingflow-app-user-mcp@0.2.0-beta.43
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Run:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx -y -p @josephyan/qingflow-app-user-mcp@0.2.0-beta.
|
|
12
|
+
npx -y -p @josephyan/qingflow-app-user-mcp@0.2.0-beta.43 qingflow-app-user-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Environment:
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
@@ -228,7 +228,8 @@ class ImportTools(ToolBase):
|
|
|
228
228
|
backend_verification = payload
|
|
229
229
|
else:
|
|
230
230
|
backend_verification = {}
|
|
231
|
-
|
|
231
|
+
being_validated = backend_verification.get("beingValidated", True)
|
|
232
|
+
if being_validated is False:
|
|
232
233
|
can_import = False
|
|
233
234
|
issues.append(
|
|
234
235
|
_issue(
|
|
@@ -288,7 +289,8 @@ class ImportTools(ToolBase):
|
|
|
288
289
|
"warnings": warnings,
|
|
289
290
|
"verification": {
|
|
290
291
|
"local_precheck_passed": bool(local_check["local_precheck_passed"]),
|
|
291
|
-
"backend_verification_passed":
|
|
292
|
+
"backend_verification_passed": isinstance(backend_verification, dict)
|
|
293
|
+
and backend_verification.get("beingValidated", True) is not False,
|
|
292
294
|
"schema_fingerprint": schema_fingerprint,
|
|
293
295
|
"file_sha256": local_check["file_sha256"],
|
|
294
296
|
"file_format": local_check["extension"],
|