smoonb 0.0.24 → 0.0.25

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smoonb",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "Complete Supabase backup and migration tool - EXPERIMENTAL VERSION - USE AT YOUR OWN RISK",
5
5
  "preferGlobal": false,
6
6
  "preventGlobalInstall": true,
@@ -151,7 +151,7 @@ async function performFullBackup(config, options) {
151
151
  console.log(chalk.green(`🔐 Auth Settings: ${authResult.success ? 'Exportadas via API' : 'Falharam'}`));
152
152
  console.log(chalk.green(`📦 Storage: ${storageResult.buckets?.length || 0} buckets verificados via API`));
153
153
  console.log(chalk.green(`👥 Custom Roles: ${rolesResult.roles?.length || 0} roles exportados via SQL`));
154
- console.log(chalk.green(`🔄 Realtime: ${realtimeResult.success ? 'Configurações exportadas via SQL' : 'Falharam'}`));
154
+ console.log(chalk.green(`🔄 Realtime: ${realtimeResult.success ? 'Configurações capturadas interativamente' : 'Falharam'}`));
155
155
 
156
156
  return { success: true, backupDir, manifest };
157
157
  }
@@ -161,7 +161,7 @@ async function captureSettingsInteractively(projectId, previousSettings) {
161
161
  allow_public_access: {
162
162
  label: "Allow public access",
163
163
  description: "If disabled, only private channels will be allowed",
164
- value: allowPublicAccess === 'true'
164
+ value: allowPublicAccess === 'true' || allowPublicAccess === true
165
165
  },
166
166
  database_connection_pool_size: {
167
167
  label: "Database connection pool size",