fleetbo-cockpit-cli 1.0.17 → 1.0.18

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 (2) hide show
  1. package/cli.js +4 -0
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -163,6 +163,10 @@ if (command === 'alex') {
163
163
  headers: { 'x-project-id': projectId }
164
164
  });
165
165
  let aiData = result.data;
166
+ // --- DEBUG (À SUPPRIMER APRÈS) ---
167
+ console.log('\n[DEBUG-1] typeof result.data:', typeof result.data);
168
+ console.log('[DEBUG-2] first 120 chars:', JSON.stringify(result.data).substring(0, 120));
169
+ // --- FIN DEBUG ---
166
170
  if (typeof aiData === 'string') {
167
171
  try { aiData = JSON.parse(aiData); } catch (_) {}
168
172
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetbo-cockpit-cli",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "Fleetbo CLI - Build native mobile apps with React",
5
5
  "author": "Fleetbo",
6
6
  "license": "MIT",