@orcapt/cli 1.0.5 → 1.0.6

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/package.json +1 -1
  2. package/src/config.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orcapt/cli",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "CLI tool for managing Orca projects - Quick setup and deployment",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/config.js CHANGED
@@ -15,7 +15,7 @@ const API_ENDPOINTS = {
15
15
  // Database
16
16
  DB_CREATE: '/api/v1/db/create',
17
17
  DB_LIST: '/api/v1/db/list',
18
- DB_DELETE: '/api/v1/db/delete-schema',
18
+ DB_DELETE: '/api/v1/db/delete',
19
19
 
20
20
  // Storage
21
21
  STORAGE_BUCKET_CREATE: '/api/v1/storage/bucket/create',