liangzimixin 0.3.71 → 0.3.72
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/dist/index.cjs
CHANGED
|
@@ -21243,7 +21243,8 @@ var MessagePipe = class _MessagePipe {
|
|
|
21243
21243
|
log25.error(`${logTag}:http-error`, {
|
|
21244
21244
|
status: resp.status,
|
|
21245
21245
|
statusText: resp.statusText,
|
|
21246
|
-
url: url2
|
|
21246
|
+
url: url2,
|
|
21247
|
+
body
|
|
21247
21248
|
});
|
|
21248
21249
|
return { code: -1, msg: `HTTP ${resp.status}`, _retryable: resp.status >= 500 };
|
|
21249
21250
|
}
|
|
@@ -21252,7 +21253,8 @@ var MessagePipe = class _MessagePipe {
|
|
|
21252
21253
|
log25.error(`${logTag}:api-error`, {
|
|
21253
21254
|
code: result.code,
|
|
21254
21255
|
msg: result.msg,
|
|
21255
|
-
requestId: result.request_id
|
|
21256
|
+
requestId: result.request_id,
|
|
21257
|
+
body
|
|
21256
21258
|
});
|
|
21257
21259
|
return null;
|
|
21258
21260
|
}
|
package/dist/setup-entry.cjs
CHANGED
|
@@ -20141,7 +20141,8 @@ var MessagePipe = class _MessagePipe {
|
|
|
20141
20141
|
log16.error(`${logTag}:http-error`, {
|
|
20142
20142
|
status: resp.status,
|
|
20143
20143
|
statusText: resp.statusText,
|
|
20144
|
-
url: url2
|
|
20144
|
+
url: url2,
|
|
20145
|
+
body
|
|
20145
20146
|
});
|
|
20146
20147
|
return { code: -1, msg: `HTTP ${resp.status}`, _retryable: resp.status >= 500 };
|
|
20147
20148
|
}
|
|
@@ -20150,7 +20151,8 @@ var MessagePipe = class _MessagePipe {
|
|
|
20150
20151
|
log16.error(`${logTag}:api-error`, {
|
|
20151
20152
|
code: result.code,
|
|
20152
20153
|
msg: result.msg,
|
|
20153
|
-
requestId: result.request_id
|
|
20154
|
+
requestId: result.request_id,
|
|
20155
|
+
body
|
|
20154
20156
|
});
|
|
20155
20157
|
return null;
|
|
20156
20158
|
}
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ REM liangzimixin install script (Windows)
|
|
|
7
7
|
REM Usage: liangzimixin_install.bat <appId> <appSecret> [quantumAccount]
|
|
8
8
|
REM ============================================================
|
|
9
9
|
|
|
10
|
-
set "SCRIPT_VERSION=0.3.
|
|
10
|
+
set "SCRIPT_VERSION=0.3.72"
|
|
11
11
|
set "NPM_PACKAGE=liangzimixin"
|
|
12
12
|
|
|
13
13
|
set "SKIP_SELF_UPDATE=0"
|
|
@@ -6,7 +6,7 @@ set -euo pipefail
|
|
|
6
6
|
# 用法: ./liangzimixin_install.sh <appId> <appSecret> [quantumAccount]
|
|
7
7
|
# ============================================================
|
|
8
8
|
|
|
9
|
-
SCRIPT_VERSION="0.3.
|
|
9
|
+
SCRIPT_VERSION="0.3.72"
|
|
10
10
|
NPM_PACKAGE="liangzimixin"
|
|
11
11
|
|
|
12
12
|
# ── 颜色 ──────────────────────────────────────────────────────
|