@josephyan/qingflow-app-user-mcp 0.2.0-beta.44 → 0.2.0-beta.45
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.45
|
|
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.45 qingflow-app-user-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Environment:
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
@@ -343,11 +343,11 @@ class BackendClient:
|
|
|
343
343
|
),
|
|
344
344
|
wait_timeout=ack_timeout_seconds,
|
|
345
345
|
)
|
|
346
|
-
sio.emit("token",
|
|
346
|
+
sio.emit("token", context.token)
|
|
347
347
|
sleep(0.2)
|
|
348
348
|
ack = sio.call(
|
|
349
349
|
"dataImport",
|
|
350
|
-
|
|
350
|
+
(
|
|
351
351
|
context.token,
|
|
352
352
|
app_key,
|
|
353
353
|
bool(being_enter_auditing),
|
|
@@ -355,7 +355,7 @@ class BackendClient:
|
|
|
355
355
|
False,
|
|
356
356
|
excel_url,
|
|
357
357
|
excel_name,
|
|
358
|
-
|
|
358
|
+
),
|
|
359
359
|
timeout=ack_timeout_seconds,
|
|
360
360
|
)
|
|
361
361
|
ack_payload = ack[0] if isinstance(ack, list) and ack else ack
|