product-discovery-cli 0.0.5 → 0.0.6
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/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -10,7 +10,7 @@ const { RunDiscoveryFlow } = require("./application/RunDiscoveryFlow");
|
|
|
10
10
|
const DEFAULT_API_URL = process.env.API_URL || "http://localhost:3000/api/v1/discovery";
|
|
11
11
|
|
|
12
12
|
const prompt = new PromptService();
|
|
13
|
-
const presenter = new ConsolePresenter();
|
|
13
|
+
const presenter = new ConsolePresenter(null);
|
|
14
14
|
const apiClient = new ProductDiscoveryApi();
|
|
15
15
|
const storage = new JsonFileStorage();
|
|
16
16
|
const useCase = new RunDiscoveryFlow({ prompt, apiClient, storage, presenter });
|