@elizaos/cli 1.6.4-alpha.14 → 1.6.4-alpha.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 +8 -8
- package/dist/index.js.map +6 -6
- package/dist/templates/plugin-quick-starter/package.json +2 -2
- package/dist/templates/plugin-starter/package.json +2 -2
- package/dist/templates/project-starter/package.json +6 -6
- package/dist/templates/project-tee-starter/package.json +4 -4
- package/dist/version.d.ts +2 -2
- package/dist/version.js +2 -2
- package/package.json +7 -7
- package/templates/plugin-quick-starter/package.json +2 -2
- package/templates/plugin-starter/package.json +2 -2
- package/templates/project-starter/package.json +6 -6
- package/templates/project-tee-starter/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -4749,7 +4749,7 @@ __export(exports_version, {
|
|
|
4749
4749
|
BUILD_TIME: () => BUILD_TIME,
|
|
4750
4750
|
BUILD_ENV: () => BUILD_ENV
|
|
4751
4751
|
});
|
|
4752
|
-
var CLI_VERSION = "1.6.4-alpha.
|
|
4752
|
+
var CLI_VERSION = "1.6.4-alpha.16", CLI_NAME = "@elizaos/cli", CLI_DESCRIPTION = "elizaOS CLI - Manage your AI agents and plugins", BUILD_TIME = "2025-10-29T07:59:35.599Z", BUILD_ENV = "production", version_default;
|
|
4753
4753
|
var init_version = __esm(() => {
|
|
4754
4754
|
version_default = {
|
|
4755
4755
|
version: CLI_VERSION,
|
|
@@ -288170,10 +288170,10 @@ init_esm();
|
|
|
288170
288170
|
import { logger as logger31 } from "@elizaos/core";
|
|
288171
288171
|
async function listContainersAction(options) {
|
|
288172
288172
|
try {
|
|
288173
|
-
const apiKey = options.apiKey || process.env.
|
|
288173
|
+
const apiKey = options.apiKey || process.env.ELIZA_SERVER_AUTH_TOKEN;
|
|
288174
288174
|
const apiUrl = options.apiUrl || "https://www.elizacloud.ai";
|
|
288175
288175
|
if (!apiKey) {
|
|
288176
|
-
logger31.error("\u274C Error: API key is required. Use --api-key or set
|
|
288176
|
+
logger31.error("\u274C Error: API key is required. Use --api-key or set ELIZA_SERVER_AUTH_TOKEN environment variable.");
|
|
288177
288177
|
process.exit(1);
|
|
288178
288178
|
}
|
|
288179
288179
|
logger31.info("\uD83D\uDCCB Fetching container list...");
|
|
@@ -288244,10 +288244,10 @@ async function confirmDeletion(containerName, projectName) {
|
|
|
288244
288244
|
}
|
|
288245
288245
|
async function deleteContainerAction(containerId, options) {
|
|
288246
288246
|
try {
|
|
288247
|
-
const apiKey = options.apiKey || process.env.
|
|
288247
|
+
const apiKey = options.apiKey || process.env.ELIZA_SERVER_AUTH_TOKEN;
|
|
288248
288248
|
const apiUrl = options.apiUrl || "https://www.elizacloud.ai";
|
|
288249
288249
|
if (!apiKey) {
|
|
288250
|
-
logger32.error("\u274C Error: API key is required. Use --api-key or set
|
|
288250
|
+
logger32.error("\u274C Error: API key is required. Use --api-key or set ELIZA_SERVER_AUTH_TOKEN environment variable.");
|
|
288251
288251
|
process.exit(1);
|
|
288252
288252
|
}
|
|
288253
288253
|
let targetContainerId = containerId;
|
|
@@ -288335,10 +288335,10 @@ import { logger as logger33 } from "@elizaos/core";
|
|
|
288335
288335
|
import * as path29 from "path";
|
|
288336
288336
|
async function getContainerLogsAction(containerId, options) {
|
|
288337
288337
|
try {
|
|
288338
|
-
const apiKey = options.apiKey || process.env.
|
|
288338
|
+
const apiKey = options.apiKey || process.env.ELIZA_SERVER_AUTH_TOKEN;
|
|
288339
288339
|
const apiUrl = options.apiUrl || "https://www.elizacloud.ai";
|
|
288340
288340
|
if (!apiKey) {
|
|
288341
|
-
logger33.error("\u274C Error: API key is required. Use --api-key or set
|
|
288341
|
+
logger33.error("\u274C Error: API key is required. Use --api-key or set ELIZA_SERVER_AUTH_TOKEN environment variable.");
|
|
288342
288342
|
process.exit(1);
|
|
288343
288343
|
}
|
|
288344
288344
|
let targetContainerId = containerId;
|
|
@@ -313266,5 +313266,5 @@ main().catch((error46) => {
|
|
|
313266
313266
|
process.exit(1);
|
|
313267
313267
|
});
|
|
313268
313268
|
|
|
313269
|
-
//# debugId=
|
|
313269
|
+
//# debugId=19A4B244C485074564756E2164756E21
|
|
313270
313270
|
//# sourceMappingURL=index.js.map
|