@sysnee/pgs 0.1.0 → 0.1.1

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/manager.js +4 -0
  2. package/package.json +1 -1
package/manager.js CHANGED
@@ -379,6 +379,10 @@ function executeCommand(command) {
379
379
  }
380
380
  }
381
381
 
382
+ function generateRandomPassword() {
383
+ return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15)
384
+ }
385
+
382
386
  const program = new Command();
383
387
 
384
388
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sysnee/pgs",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Dynamic PostgreSQL service instance manager",
5
5
  "type": "module",
6
6
  "bin": {