@strapi/cloud-cli 0.0.0-next.506c866896b405bfee0715be82ad4b0f8da1d26b → 0.0.0-next.53c97b9b27dcd99739ba6e68872791c982c3a6e1

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.
Files changed (34) hide show
  1. package/dist/index.js +249 -87
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +249 -86
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/cloud/command.d.ts +3 -0
  6. package/dist/src/cloud/command.d.ts.map +1 -0
  7. package/dist/src/create-project/action.d.ts.map +1 -1
  8. package/dist/src/create-project/command.d.ts.map +1 -1
  9. package/dist/src/create-project/utils/project-questions.utils.d.ts +20 -0
  10. package/dist/src/create-project/utils/project-questions.utils.d.ts.map +1 -0
  11. package/dist/src/deploy-project/action.d.ts.map +1 -1
  12. package/dist/src/deploy-project/command.d.ts.map +1 -1
  13. package/dist/src/environment/command.d.ts +3 -0
  14. package/dist/src/environment/command.d.ts.map +1 -0
  15. package/dist/src/environment/list/action.d.ts +4 -0
  16. package/dist/src/environment/list/action.d.ts.map +1 -0
  17. package/dist/src/environment/list/command.d.ts +4 -0
  18. package/dist/src/environment/list/command.d.ts.map +1 -0
  19. package/dist/src/environment/list/index.d.ts +7 -0
  20. package/dist/src/environment/list/index.d.ts.map +1 -0
  21. package/dist/src/index.d.ts +1 -0
  22. package/dist/src/index.d.ts.map +1 -1
  23. package/dist/src/login/command.d.ts.map +1 -1
  24. package/dist/src/logout/command.d.ts.map +1 -1
  25. package/dist/src/services/cli-api.d.ts +25 -0
  26. package/dist/src/services/cli-api.d.ts.map +1 -1
  27. package/dist/src/types.d.ts +4 -1
  28. package/dist/src/types.d.ts.map +1 -1
  29. package/dist/src/utils/pkg.d.ts.map +1 -1
  30. package/dist/src/utils/tests/compress-files.test.d.ts +2 -0
  31. package/dist/src/utils/tests/compress-files.test.d.ts.map +1 -0
  32. package/package.json +8 -8
  33. package/dist/src/create-project/utils/apply-default-name.d.ts +0 -7
  34. package/dist/src/create-project/utils/apply-default-name.d.ts.map +0 -1
package/dist/index.mjs CHANGED
@@ -20,8 +20,8 @@ import ora from "ora";
20
20
  import * as cliProgress from "cli-progress";
21
21
  import pkgUp from "pkg-up";
22
22
  import * as yup from "yup";
23
- import _ from "lodash";
24
23
  import EventSource from "eventsource";
24
+ import { createCommand } from "commander";
25
25
  const apiConfig = {
26
26
  apiBaseUrl: env("STRAPI_CLI_CLOUD_API", "https://cloud-cli-api.strapi.io"),
27
27
  dashboardBaseUrl: env("STRAPI_CLI_CLOUD_DASHBOARD", "https://cloud.strapi.io")
@@ -134,7 +134,7 @@ async function saveLocalConfig(data) {
134
134
  await fse__default.writeJson(configFilePath, data, { encoding: "utf8", spaces: 2, mode: 384 });
135
135
  }
136
136
  const name = "@strapi/cloud-cli";
137
- const version = "4.25.5";
137
+ const version = "5.0.2";
138
138
  const description = "Commands to interact with the Strapi Cloud";
139
139
  const keywords = [
140
140
  "strapi",
@@ -179,14 +179,14 @@ const scripts = {
179
179
  watch: "pack-up watch"
180
180
  };
181
181
  const dependencies = {
182
- "@strapi/utils": "4.25.5",
183
- axios: "1.6.0",
182
+ "@strapi/utils": "workspace:*",
183
+ axios: "1.7.4",
184
184
  chalk: "4.1.2",
185
185
  "cli-progress": "3.12.0",
186
186
  commander: "8.3.0",
187
187
  eventsource: "2.0.2",
188
188
  "fast-safe-stringify": "2.1.1",
189
- "fs-extra": "10.0.0",
189
+ "fs-extra": "11.2.0",
190
190
  inquirer: "8.2.5",
191
191
  jsonwebtoken: "9.0.0",
192
192
  "jwks-rsa": "3.1.0",
@@ -195,7 +195,7 @@ const dependencies = {
195
195
  open: "8.4.0",
196
196
  ora: "5.4.1",
197
197
  "pkg-up": "3.1.0",
198
- tar: "6.1.13",
198
+ tar: "6.2.1",
199
199
  "xdg-app-paths": "8.3.0",
200
200
  yup: "0.32.9"
201
201
  };
@@ -204,8 +204,8 @@ const devDependencies = {
204
204
  "@types/cli-progress": "3.11.5",
205
205
  "@types/eventsource": "1.1.15",
206
206
  "@types/lodash": "^4.14.191",
207
- "eslint-config-custom": "4.25.5",
208
- tsconfig: "4.25.5"
207
+ "eslint-config-custom": "workspace:*",
208
+ tsconfig: "workspace:*"
209
209
  };
210
210
  const engines = {
211
211
  node: ">=18.0.0 <=20.x.x",
@@ -317,7 +317,7 @@ async function cloudApiFactory({ logger }, token) {
317
317
  },
318
318
  async listLinkProjects() {
319
319
  try {
320
- const response = await axiosCloudAPI.get("/projects/linkable");
320
+ const response = await axiosCloudAPI.get("/projects-linkable");
321
321
  if (response.status !== 200) {
322
322
  throw new Error("Error fetching cloud projects from the server.");
323
323
  }
@@ -329,6 +329,34 @@ async function cloudApiFactory({ logger }, token) {
329
329
  throw error;
330
330
  }
331
331
  },
332
+ async listEnvironments({ name: name2 }) {
333
+ try {
334
+ const response = await axiosCloudAPI.get(`/projects/${name2}/environments`);
335
+ if (response.status !== 200) {
336
+ throw new Error("Error fetching cloud environments from the server.");
337
+ }
338
+ return response;
339
+ } catch (error) {
340
+ logger.debug(
341
+ "🥲 Oops! Couldn't retrieve your project's environments from the server. Please try again."
342
+ );
343
+ throw error;
344
+ }
345
+ },
346
+ async getProject({ name: name2 }) {
347
+ try {
348
+ const response = await axiosCloudAPI.get(`/projects/${name2}`);
349
+ if (response.status !== 200) {
350
+ throw new Error("Error fetching project's details.");
351
+ }
352
+ return response;
353
+ } catch (error) {
354
+ logger.debug(
355
+ "🥲 Oops! There was a problem retrieving your project's details. Please try again."
356
+ );
357
+ throw error;
358
+ }
359
+ },
332
360
  track(event, payload = {}) {
333
361
  return axiosCloudAPI.post("/track", {
334
362
  event,
@@ -602,21 +630,24 @@ yup.object({
602
630
  name: yup.string().required(),
603
631
  exports: yup.lazy(
604
632
  (value) => yup.object(
605
- typeof value === "object" ? Object.entries(value).reduce((acc, [key, value2]) => {
606
- if (typeof value2 === "object") {
607
- acc[key] = yup.object({
608
- types: yup.string().optional(),
609
- source: yup.string().required(),
610
- module: yup.string().optional(),
611
- import: yup.string().required(),
612
- require: yup.string().required(),
613
- default: yup.string().required()
614
- }).noUnknown(true);
615
- } else {
616
- acc[key] = yup.string().matches(/^\.\/.*\.json$/).required();
617
- }
618
- return acc;
619
- }, {}) : void 0
633
+ typeof value === "object" ? Object.entries(value).reduce(
634
+ (acc, [key, value2]) => {
635
+ if (typeof value2 === "object") {
636
+ acc[key] = yup.object({
637
+ types: yup.string().optional(),
638
+ source: yup.string().required(),
639
+ module: yup.string().optional(),
640
+ import: yup.string().required(),
641
+ require: yup.string().required(),
642
+ default: yup.string().required()
643
+ }).noUnknown(true);
644
+ } else {
645
+ acc[key] = yup.string().matches(/^\.\/.*\.json$/).required();
646
+ }
647
+ return acc;
648
+ },
649
+ {}
650
+ ) : void 0
620
651
  ).optional()
621
652
  )
622
653
  });
@@ -638,18 +669,6 @@ async function getProjectNameFromPackageJson(ctx) {
638
669
  return "my-strapi-project";
639
670
  }
640
671
  }
641
- function applyDefaultName(newDefaultName, questions, defaultValues) {
642
- const newDefaultValues = _.cloneDeep(defaultValues);
643
- newDefaultValues.name = newDefaultName;
644
- const newQuestions = questions.map((question) => {
645
- const questionCopy = _.cloneDeep(question);
646
- if (questionCopy.name === "name") {
647
- questionCopy.default = newDefaultName;
648
- }
649
- return questionCopy;
650
- });
651
- return { newQuestions, newDefaultValues };
652
- }
653
672
  const trackEvent = async (ctx, cloudApiService, eventName, eventData) => {
654
673
  try {
655
674
  await cloudApiService.track(eventName, eventData);
@@ -813,6 +832,45 @@ async function loginAction(ctx) {
813
832
  await authenticate();
814
833
  return isAuthenticated;
815
834
  }
835
+ function questionDefaultValuesMapper(questionsMap) {
836
+ return (questions) => {
837
+ return questions.map((question) => {
838
+ const questionName = question.name;
839
+ if (questionName in questionsMap) {
840
+ const questionDefault = questionsMap[questionName];
841
+ if (typeof questionDefault === "function") {
842
+ return {
843
+ ...question,
844
+ default: questionDefault(question)
845
+ };
846
+ }
847
+ return {
848
+ ...question,
849
+ default: questionDefault
850
+ };
851
+ }
852
+ return question;
853
+ });
854
+ };
855
+ }
856
+ function getDefaultsFromQuestions(questions) {
857
+ return questions.reduce((acc, question) => {
858
+ if (question.default && question.name) {
859
+ return { ...acc, [question.name]: question.default };
860
+ }
861
+ return acc;
862
+ }, {});
863
+ }
864
+ function getProjectNodeVersionDefault(question) {
865
+ const currentNodeVersion = process.versions.node.split(".")[0];
866
+ if (question.type === "list" && Array.isArray(question.choices)) {
867
+ const choice = question.choices.find((choice2) => choice2.value === currentNodeVersion);
868
+ if (choice) {
869
+ return choice.value;
870
+ }
871
+ }
872
+ return question.default;
873
+ }
816
874
  async function handleError(ctx, error) {
817
875
  const { logger } = ctx;
818
876
  logger.debug(error);
@@ -857,7 +915,7 @@ async function createProject$1(ctx, cloudApi, projectInput) {
857
915
  throw e;
858
916
  }
859
917
  }
860
- const action$4 = async (ctx) => {
918
+ const action$5 = async (ctx) => {
861
919
  const { logger } = ctx;
862
920
  const { getValidToken, eraseToken } = await tokenServiceFactory(ctx);
863
921
  const token = await getValidToken(ctx, promptLogin);
@@ -866,11 +924,16 @@ const action$4 = async (ctx) => {
866
924
  }
867
925
  const cloudApi = await cloudApiFactory(ctx, token);
868
926
  const { data: config } = await cloudApi.config();
869
- const { newQuestions: questions, newDefaultValues: defaultValues } = applyDefaultName(
870
- await getProjectNameFromPackageJson(ctx),
871
- config.projectCreation.questions,
872
- config.projectCreation.defaults
873
- );
927
+ const projectName = await getProjectNameFromPackageJson(ctx);
928
+ const defaultAnswersMapper = questionDefaultValuesMapper({
929
+ name: projectName,
930
+ nodeVersion: getProjectNodeVersionDefault
931
+ });
932
+ const questions = defaultAnswersMapper(config.projectCreation.questions);
933
+ const defaultValues = {
934
+ ...config.projectCreation.defaults,
935
+ ...getDefaultsFromQuestions(questions)
936
+ };
874
937
  const projectAnswersDefaulted = defaults(defaultValues);
875
938
  const projectAnswers = await inquirer.prompt(questions);
876
939
  const projectInput = projectAnswersDefaulted(projectAnswers);
@@ -1047,17 +1110,7 @@ async function upload(ctx, project, token, maxProjectFileSize) {
1047
1110
  return data.build_id;
1048
1111
  } catch (e) {
1049
1112
  progressBar.stop();
1050
- if (e instanceof AxiosError && e.response?.data) {
1051
- if (e.response.status === 404) {
1052
- ctx.logger.error(
1053
- `The project does not exist. Remove the ${LOCAL_SAVE_FILENAME} file and try again.`
1054
- );
1055
- } else {
1056
- ctx.logger.error(e.response.data);
1057
- }
1058
- } else {
1059
- ctx.logger.error("An error occurred while deploying the project. Please try again later.");
1060
- }
1113
+ ctx.logger.error("An error occurred while deploying the project. Please try again later.");
1061
1114
  ctx.logger.debug(e);
1062
1115
  } finally {
1063
1116
  await fse__default.remove(tarFilePath);
@@ -1069,11 +1122,11 @@ async function upload(ctx, project, token, maxProjectFileSize) {
1069
1122
  process.exit(1);
1070
1123
  }
1071
1124
  }
1072
- async function getProject(ctx) {
1125
+ async function getProject$1(ctx) {
1073
1126
  const { project } = await retrieve();
1074
1127
  if (!project) {
1075
1128
  try {
1076
- return await action$4(ctx);
1129
+ return await action$5(ctx);
1077
1130
  } catch (e) {
1078
1131
  ctx.logger.error("An error occurred while deploying the project. Please try again later.");
1079
1132
  ctx.logger.debug(e);
@@ -1094,17 +1147,49 @@ async function getConfig({
1094
1147
  return null;
1095
1148
  }
1096
1149
  }
1097
- const action$3 = async (ctx) => {
1150
+ const action$4 = async (ctx) => {
1098
1151
  const { getValidToken } = await tokenServiceFactory(ctx);
1099
1152
  const token = await getValidToken(ctx, promptLogin);
1100
1153
  if (!token) {
1101
1154
  return;
1102
1155
  }
1103
- const project = await getProject(ctx);
1156
+ const project = await getProject$1(ctx);
1104
1157
  if (!project) {
1105
1158
  return;
1106
1159
  }
1107
- const cloudApiService = await cloudApiFactory(ctx);
1160
+ const cloudApiService = await cloudApiFactory(ctx, token);
1161
+ try {
1162
+ const {
1163
+ data: { data: projectData, metadata }
1164
+ } = await cloudApiService.getProject({ name: project.name });
1165
+ const isProjectSuspended = projectData.suspendedAt;
1166
+ if (isProjectSuspended) {
1167
+ ctx.logger.log(
1168
+ "\n Oops! This project has been suspended. \n\n Please reactivate it from the dashboard to continue deploying: "
1169
+ );
1170
+ ctx.logger.log(chalk.underline(`${metadata.dashboardUrls.project}`));
1171
+ return;
1172
+ }
1173
+ } catch (e) {
1174
+ if (e instanceof AxiosError && e.response?.data) {
1175
+ if (e.response.status === 404) {
1176
+ ctx.logger.warn(
1177
+ `The project associated with this folder does not exist in Strapi Cloud.
1178
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1179
+ "link"
1180
+ )} command before deploying.`
1181
+ );
1182
+ } else {
1183
+ ctx.logger.error(e.response.data);
1184
+ }
1185
+ } else {
1186
+ ctx.logger.error(
1187
+ "An error occurred while retrieving the project's information. Please try again later."
1188
+ );
1189
+ }
1190
+ ctx.logger.debug(e);
1191
+ return;
1192
+ }
1108
1193
  await trackEvent(ctx, cloudApiService, "willDeployWithCLI", {
1109
1194
  projectInternalName: project.name
1110
1195
  });
@@ -1113,7 +1198,7 @@ const action$3 = async (ctx) => {
1113
1198
  const cliConfig2 = await getConfig({ ctx, cloudApiService });
1114
1199
  if (!cliConfig2) {
1115
1200
  ctx.logger.error(
1116
- "An error occurred while retrieving data from Strapi Cloud. Please try check your network or again later."
1201
+ "An error occurred while retrieving data from Strapi Cloud. Please check your network or try again later."
1117
1202
  );
1118
1203
  return;
1119
1204
  }
@@ -1173,14 +1258,14 @@ const runAction = (name2, action2) => (...args) => {
1173
1258
  process.exit(1);
1174
1259
  });
1175
1260
  };
1176
- const command$5 = ({ command: command2, ctx }) => {
1177
- command2.command("cloud:deploy").alias("deploy").description("Deploy a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("deploy", action$3)(ctx));
1261
+ const command$6 = ({ ctx }) => {
1262
+ return createCommand("cloud:deploy").alias("deploy").description("Deploy a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("deploy", action$4)(ctx));
1178
1263
  };
1179
1264
  const deployProject = {
1180
1265
  name: "deploy-project",
1181
1266
  description: "Deploy a Strapi Cloud project",
1182
- action: action$3,
1183
- command: command$5
1267
+ action: action$4,
1268
+ command: command$6
1184
1269
  };
1185
1270
  const QUIT_OPTION = "Quit";
1186
1271
  async function getExistingConfig(ctx) {
@@ -1264,7 +1349,7 @@ async function getUserSelection(ctx, projects) {
1264
1349
  return null;
1265
1350
  }
1266
1351
  }
1267
- const action$2 = async (ctx) => {
1352
+ const action$3 = async (ctx) => {
1268
1353
  const { getValidToken } = await tokenServiceFactory(ctx);
1269
1354
  const token = await getValidToken(ctx, promptLogin);
1270
1355
  const { logger } = ctx;
@@ -1319,17 +1404,17 @@ const action$2 = async (ctx) => {
1319
1404
  });
1320
1405
  }
1321
1406
  };
1322
- const command$4 = ({ command: command2, ctx }) => {
1323
- command2.command("cloud:link").alias("link").description("Link a local directory to a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("link", action$2)(ctx));
1407
+ const command$5 = ({ command: command2, ctx }) => {
1408
+ command2.command("cloud:link").alias("link").description("Link a local directory to a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("link", action$3)(ctx));
1324
1409
  };
1325
1410
  const link = {
1326
1411
  name: "link-project",
1327
1412
  description: "Link a local directory to a Strapi Cloud project",
1328
- action: action$2,
1329
- command: command$4
1413
+ action: action$3,
1414
+ command: command$5
1330
1415
  };
1331
- const command$3 = ({ command: command2, ctx }) => {
1332
- command2.command("cloud:login").alias("login").description("Strapi Cloud Login").addHelpText(
1416
+ const command$4 = ({ ctx }) => {
1417
+ return createCommand("cloud:login").alias("login").description("Strapi Cloud Login").addHelpText(
1333
1418
  "after",
1334
1419
  "\nAfter running this command, you will be prompted to enter your authentication information."
1335
1420
  ).option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("login", loginAction)(ctx));
@@ -1338,10 +1423,10 @@ const login = {
1338
1423
  name: "login",
1339
1424
  description: "Strapi Cloud Login",
1340
1425
  action: loginAction,
1341
- command: command$3
1426
+ command: command$4
1342
1427
  };
1343
1428
  const openModule = import("open");
1344
- const action$1 = async (ctx) => {
1429
+ const action$2 = async (ctx) => {
1345
1430
  const { logger } = ctx;
1346
1431
  const { retrieveToken, eraseToken } = await tokenServiceFactory(ctx);
1347
1432
  const token = await retrieveToken();
@@ -1373,25 +1458,25 @@ const action$1 = async (ctx) => {
1373
1458
  }
1374
1459
  await trackEvent(ctx, cloudApiService, "didLogout", { loginMethod: "cli" });
1375
1460
  };
1376
- const command$2 = ({ command: command2, ctx }) => {
1377
- command2.command("cloud:logout").alias("logout").description("Strapi Cloud Logout").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("logout", action$1)(ctx));
1461
+ const command$3 = ({ ctx }) => {
1462
+ return createCommand("cloud:logout").alias("logout").description("Strapi Cloud Logout").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("logout", action$2)(ctx));
1378
1463
  };
1379
1464
  const logout = {
1380
1465
  name: "logout",
1381
1466
  description: "Strapi Cloud Logout",
1382
- action: action$1,
1383
- command: command$2
1467
+ action: action$2,
1468
+ command: command$3
1384
1469
  };
1385
- const command$1 = ({ command: command2, ctx }) => {
1386
- command2.command("cloud:create-project").description("Create a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("cloud:create-project", action$4)(ctx));
1470
+ const command$2 = ({ ctx }) => {
1471
+ return createCommand("cloud:create-project").description("Create a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("cloud:create-project", action$5)(ctx));
1387
1472
  };
1388
1473
  const createProject = {
1389
1474
  name: "create-project",
1390
1475
  description: "Create a new project",
1391
- action: action$4,
1392
- command: command$1
1476
+ action: action$5,
1477
+ command: command$2
1393
1478
  };
1394
- const action = async (ctx) => {
1479
+ const action$1 = async (ctx) => {
1395
1480
  const { getValidToken } = await tokenServiceFactory(ctx);
1396
1481
  const token = await getValidToken(ctx, promptLogin);
1397
1482
  const { logger } = ctx;
@@ -1411,12 +1496,86 @@ const action = async (ctx) => {
1411
1496
  spinner.fail("An error occurred while fetching your projects from Strapi Cloud.");
1412
1497
  }
1413
1498
  };
1414
- const command = ({ command: command2, ctx }) => {
1415
- command2.command("cloud:projects").alias("projects").description("List Strapi Cloud projects").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("projects", action)(ctx));
1499
+ const command$1 = ({ command: command2, ctx }) => {
1500
+ command2.command("cloud:projects").alias("projects").description("List Strapi Cloud projects").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("projects", action$1)(ctx));
1416
1501
  };
1417
1502
  const listProjects = {
1418
1503
  name: "list-projects",
1419
1504
  description: "List Strapi Cloud projects",
1505
+ action: action$1,
1506
+ command: command$1
1507
+ };
1508
+ async function getProject(ctx) {
1509
+ const { project } = await retrieve();
1510
+ if (!project) {
1511
+ ctx.logger.warn(
1512
+ `
1513
+ We couldn't find a valid local project config.
1514
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1515
+ "link"
1516
+ )} command`
1517
+ );
1518
+ process.exit(1);
1519
+ }
1520
+ return project;
1521
+ }
1522
+ const action = async (ctx) => {
1523
+ const { getValidToken } = await tokenServiceFactory(ctx);
1524
+ const token = await getValidToken(ctx, promptLogin);
1525
+ const { logger } = ctx;
1526
+ if (!token) {
1527
+ return;
1528
+ }
1529
+ const project = await getProject(ctx);
1530
+ if (!project) {
1531
+ ctx.logger.debug(`No valid local project configuration was found.`);
1532
+ return;
1533
+ }
1534
+ const cloudApiService = await cloudApiFactory(ctx, token);
1535
+ const spinner = logger.spinner("Fetching environments...").start();
1536
+ await trackEvent(ctx, cloudApiService, "willListEnvironment", {
1537
+ projectInternalName: project.name
1538
+ });
1539
+ try {
1540
+ const {
1541
+ data: { data: environmentsList }
1542
+ } = await cloudApiService.listEnvironments({ name: project.name });
1543
+ spinner.succeed();
1544
+ logger.log(environmentsList);
1545
+ await trackEvent(ctx, cloudApiService, "didListEnvironment", {
1546
+ projectInternalName: project.name
1547
+ });
1548
+ } catch (e) {
1549
+ if (e.response && e.response.status === 404) {
1550
+ spinner.succeed();
1551
+ logger.warn(
1552
+ `
1553
+ The project associated with this folder does not exist in Strapi Cloud.
1554
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1555
+ "link"
1556
+ )} command`
1557
+ );
1558
+ } else {
1559
+ spinner.fail("An error occurred while fetching environments data from Strapi Cloud.");
1560
+ logger.debug("Failed to list environments", e);
1561
+ }
1562
+ await trackEvent(ctx, cloudApiService, "didNotListEnvironment", {
1563
+ projectInternalName: project.name
1564
+ });
1565
+ }
1566
+ };
1567
+ function defineCloudNamespace(command2) {
1568
+ return command2.command("cloud").description("Manage Strapi Cloud projects");
1569
+ }
1570
+ const command = ({ command: command2, ctx }) => {
1571
+ const cloud = defineCloudNamespace(command2);
1572
+ cloud.command("environments").description("Alias for cloud environment list").action(() => runAction("list", action)(ctx));
1573
+ const environment = cloud.command("environment").description("Manage environments for a Strapi Cloud project");
1574
+ environment.command("list").description("List Strapi Cloud project environments").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("list", action)(ctx));
1575
+ };
1576
+ const listEnvironments = {
1577
+ name: "list-environments",
1578
+ description: "List Strapi Cloud environments",
1420
1579
  action,
1421
1580
  command
1422
1581
  };
@@ -1426,9 +1585,10 @@ const cli = {
1426
1585
  login,
1427
1586
  logout,
1428
1587
  createProject,
1429
- listProjects
1588
+ listProjects,
1589
+ listEnvironments
1430
1590
  };
1431
- const cloudCommands = [deployProject, link, login, logout, listProjects];
1591
+ const cloudCommands = [deployProject, link, login, logout, listProjects, listEnvironments];
1432
1592
  async function initCloudCLIConfig() {
1433
1593
  const localConfig = await getLocalConfig();
1434
1594
  if (!localConfig.deviceId) {
@@ -1444,7 +1604,10 @@ async function buildStrapiCloudCommands({
1444
1604
  await initCloudCLIConfig();
1445
1605
  for (const cloudCommand of cloudCommands) {
1446
1606
  try {
1447
- await cloudCommand.command({ command: command2, ctx, argv });
1607
+ const subCommand = await cloudCommand.command({ command: command2, ctx, argv });
1608
+ if (subCommand) {
1609
+ command2.addCommand(subCommand);
1610
+ }
1448
1611
  } catch (e) {
1449
1612
  console.error(`Failed to load command ${cloudCommand.name}`, e);
1450
1613
  }