@xano/cli 0.0.62 → 0.0.64

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.
@@ -189,9 +189,9 @@ Truncate all table records before importing
189
189
  }
190
190
  this.error(errorMessage);
191
191
  }
192
- // Log the response if any
192
+ // Parse the response (suppress raw output; only show in verbose mode)
193
193
  const responseText = await response.text();
194
- if (responseText && responseText !== 'null') {
194
+ if (responseText && responseText !== 'null' && flags.verbose) {
195
195
  this.log(responseText);
196
196
  }
197
197
  }