pgai 0.14.0-dev.34 → 0.14.0-dev.35

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/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,14 +8,14 @@ Run without installing:
8
8
 
9
9
  ```bash
10
10
  npx pgai --help
11
- npx pgai init postgresql://admin@host:5432/dbname
11
+ npx pgai prepare-db postgresql://admin@host:5432/dbname
12
12
  ```
13
13
 
14
14
  This is equivalent to:
15
15
 
16
16
  ```bash
17
17
  npx postgresai --help
18
- npx postgresai init postgresql://admin@host:5432/dbname
18
+ npx postgresai prepare-db postgresql://admin@host:5432/dbname
19
19
  ```
20
20
 
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgai",
3
- "version": "0.14.0-dev.34",
3
+ "version": "0.14.0-dev.35",
4
4
  "description": "Thin wrapper for postgresai CLI (provides `npx pgai ...`)",
5
5
  "license": "Apache-2.0",
6
6
  "private": false,
@@ -20,6 +20,6 @@
20
20
  "node": ">=18"
21
21
  },
22
22
  "dependencies": {
23
- "postgresai": "0.14.0-dev.34"
23
+ "postgresai": "0.14.0-dev.35"
24
24
  }
25
25
  }