@codexa/cli 8.5.0 → 8.6.0

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/workflow.ts CHANGED
@@ -32,7 +32,6 @@ import {
32
32
  architectStart,
33
33
  architectShow,
34
34
  architectList,
35
- architectUpdate,
36
35
  architectSave,
37
36
  architectApprove,
38
37
  architectExport,
@@ -744,23 +743,6 @@ architectCmd
744
743
  architectList(options);
745
744
  });
746
745
 
747
- architectCmd
748
- .command("update")
749
- .description("Atualiza campos da analise pendente")
750
- .option("--context <text>", "Contexto e entendimento do problema")
751
- .option("--current-architecture <text>", "Arquitetura atual identificada")
752
- .option("--approach <text>", "Abordagem/solucao proposta")
753
- .option("--chosen-alternative <name>", "Nome da alternativa escolhida")
754
- .option("--diagrams <json>", "JSON array de diagramas [{name, type, content}]")
755
- .option("--baby-steps <json>", "JSON array de baby steps")
756
- .option("--risks <json>", "JSON array de riscos")
757
- .option("--alternatives <json>", "JSON array de alternativas")
758
- .option("--decisions <json>", "JSON array de decisoes arquiteturais")
759
- .option("--json", "Saida em JSON")
760
- .action((options) => {
761
- architectUpdate(options);
762
- });
763
-
764
746
  architectCmd
765
747
  .command("save")
766
748
  .description("Salva analise em arquivo markdown")