@okx_ai/okx-trade-cli 1.3.1-beta.15 → 1.3.1-beta.16
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.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -1
package/dist/index.js
CHANGED
|
@@ -10281,6 +10281,7 @@ function getPlatformDir() {
|
|
|
10281
10281
|
"darwin-arm64": "darwin-arm64",
|
|
10282
10282
|
"darwin-x64": "darwin-x64",
|
|
10283
10283
|
"linux-x64": "linux-x64",
|
|
10284
|
+
"linux-arm64": "linux-x64",
|
|
10284
10285
|
"win32-x64": "win32-x64"
|
|
10285
10286
|
};
|
|
10286
10287
|
return map[`${p}-${a}`] ?? null;
|
|
@@ -11682,7 +11683,7 @@ async function cmdDiagnoseMcp(options = {}) {
|
|
|
11682
11683
|
|
|
11683
11684
|
// src/commands/diagnose.ts
|
|
11684
11685
|
var CLI_VERSION = readCliVersion();
|
|
11685
|
-
var GIT_HASH = true ? "
|
|
11686
|
+
var GIT_HASH = true ? "cd25c1f" : "dev";
|
|
11686
11687
|
function maskKey2(key) {
|
|
11687
11688
|
if (!key) return "(not set)";
|
|
11688
11689
|
if (key.length <= 8) return "****";
|
|
@@ -17582,7 +17583,7 @@ async function cmdEventCancel(run, opts) {
|
|
|
17582
17583
|
// src/index.ts
|
|
17583
17584
|
var _require3 = createRequire3(import.meta.url);
|
|
17584
17585
|
var CLI_VERSION2 = _require3("../package.json").version;
|
|
17585
|
-
var GIT_HASH2 = true ? "
|
|
17586
|
+
var GIT_HASH2 = true ? "cd25c1f" : "dev";
|
|
17586
17587
|
function handleDohCommand(action, json, force, binaryPath) {
|
|
17587
17588
|
if (action === "status") return cmdDohStatus(json, binaryPath);
|
|
17588
17589
|
if (action === "install") return cmdDohInstall(json, binaryPath);
|