smoonb 0.0.32 → 0.0.33

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.32",
3
+ "version": "0.0.33",
4
4
  "description": "Complete Supabase backup and migration tool - EXPERIMENTAL VERSION - USE AT YOUR OWN RISK",
5
5
  "preferGlobal": false,
6
6
  "preventGlobalInstall": true,
@@ -584,8 +584,7 @@ SELECT json_agg(
584
584
  'schema', extnamespace::regnamespace
585
585
  )
586
586
  ) as extensions
587
- FROM pg_extension
588
- ORDER BY extname;
587
+ FROM pg_extension;
589
588
 
590
589
  -- 2. Capturar configurações PostgreSQL importantes
591
590
  SELECT json_agg(
@@ -617,8 +616,7 @@ WHERE name IN (
617
616
  'wal_buffers',
618
617
  'max_wal_size',
619
618
  'min_wal_size'
620
- )
621
- ORDER BY name;
619
+ );
622
620
 
623
621
  -- 3. Capturar configurações específicas dos roles Supabase
624
622
  SELECT json_agg(
@@ -629,8 +627,7 @@ SELECT json_agg(
629
627
  ) as role_configurations
630
628
  FROM pg_roles
631
629
  WHERE rolname IN ('anon', 'authenticated', 'authenticator', 'postgres', 'service_role')
632
- AND rolconfig IS NOT NULL
633
- ORDER BY rolname;
630
+ AND rolconfig IS NOT NULL;
634
631
 
635
632
  -- 4. Capturar configurações de PGAudit (se existir)
636
633
  SELECT json_agg(
@@ -644,8 +641,7 @@ WHERE rolconfig IS NOT NULL
644
641
  AND EXISTS (
645
642
  SELECT 1 FROM unnest(rolconfig) AS config
646
643
  WHERE config LIKE '%pgaudit%'
647
- )
648
- ORDER BY rolname;
644
+ );
649
645
  `;
650
646
 
651
647
  // Salvar script SQL temporário