@xano/cli 1.0.2-beta.3 → 1.0.2-beta.4

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.
@@ -138,7 +138,10 @@ Opening browser for Xano login at https://custom.xano.com...`,
138
138
  }
139
139
  const data = (await response.json());
140
140
  if (Array.isArray(data)) {
141
- return data.map((br) => ({
141
+ return data
142
+ .filter((br) => !br.backup)
143
+ .map((br) => ({
144
+ backup: br.backup,
142
145
  id: br.id || br.label,
143
146
  label: br.label,
144
147
  }));