@linzumi/cli 0.0.91-beta → 0.0.92-beta
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 +1 -1
- package/dist/index.js +7 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -14684,6 +14684,7 @@ function codexAppServerArgs(listenUrl, options = {}) {
|
|
|
14684
14684
|
}
|
|
14685
14685
|
function codexConfigArgs(options) {
|
|
14686
14686
|
return [
|
|
14687
|
+
...codexDisableAppsConfigArgs,
|
|
14687
14688
|
...options.model === void 0 ? [] : ["-c", `model=${JSON.stringify(options.model)}`],
|
|
14688
14689
|
...options.reasoningEffort === void 0 ? [] : [
|
|
14689
14690
|
"-c",
|
|
@@ -15056,7 +15057,7 @@ function readyzUrlForWebsocket(websocketUrl) {
|
|
|
15056
15057
|
parsed.hash = "";
|
|
15057
15058
|
return parsed.toString();
|
|
15058
15059
|
}
|
|
15059
|
-
var codexAppServerWatchdogPollMs, blockedCodexAppServerEnvKeys;
|
|
15060
|
+
var codexAppServerWatchdogPollMs, blockedCodexAppServerEnvKeys, codexDisableAppsConfigArgs;
|
|
15060
15061
|
var init_codexAppServer = __esm({
|
|
15061
15062
|
"src/codexAppServer.ts"() {
|
|
15062
15063
|
"use strict";
|
|
@@ -15070,6 +15071,10 @@ var init_codexAppServer = __esm({
|
|
|
15070
15071
|
"LINZUMI_MCP_ACCESS_TOKEN",
|
|
15071
15072
|
"LINZUMI_MCP_OWNER_USERNAME"
|
|
15072
15073
|
];
|
|
15074
|
+
codexDisableAppsConfigArgs = [
|
|
15075
|
+
"-c",
|
|
15076
|
+
"features.apps=false"
|
|
15077
|
+
];
|
|
15073
15078
|
}
|
|
15074
15079
|
});
|
|
15075
15080
|
|
|
@@ -19371,7 +19376,7 @@ var linzumiCliVersion, linzumiCliVersionText;
|
|
|
19371
19376
|
var init_version = __esm({
|
|
19372
19377
|
"src/version.ts"() {
|
|
19373
19378
|
"use strict";
|
|
19374
|
-
linzumiCliVersion = "0.0.
|
|
19379
|
+
linzumiCliVersion = "0.0.92-beta";
|
|
19375
19380
|
linzumiCliVersionText = `linzumi ${linzumiCliVersion}`;
|
|
19376
19381
|
}
|
|
19377
19382
|
});
|
package/package.json
CHANGED