gufi-cli 0.1.47 → 0.1.48
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/dist/mcp.js +8 -1
- package/package.json +1 -2
package/dist/mcp.js
CHANGED
|
@@ -37,7 +37,14 @@ function canWriteLocal() {
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
import { getToken, getRefreshToken, loadConfig, isLoggedIn, getTokenForEnv, getRefreshTokenForEnv, setTokenForEnv, getCredentialsForEnv, getCurrentEnv } from "./lib/config.js";
|
|
40
|
-
|
|
40
|
+
// 💜 Valid column types (hardcoded to avoid npm dependency on @gufi/column-types)
|
|
41
|
+
const COLUMN_TYPE_NAMES = [
|
|
42
|
+
"text", "email", "url", "barcode", "signature", "number", "number_int",
|
|
43
|
+
"number_float", "percentage", "date", "time", "created_at", "select",
|
|
44
|
+
"multiselect", "relation", "reversed_relation", "users", "boolean",
|
|
45
|
+
"currency", "phone", "location", "file", "json", "formula", "mirror",
|
|
46
|
+
"custom", "password"
|
|
47
|
+
];
|
|
41
48
|
// For ES modules __dirname equivalent
|
|
42
49
|
const __filename = fileURLToPath(import.meta.url);
|
|
43
50
|
const __dirname = path.dirname(__filename);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gufi-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.48",
|
|
4
4
|
"description": "CLI for developing Gufi Marketplace views locally with Claude Code",
|
|
5
5
|
"bin": {
|
|
6
6
|
"gufi": "./bin/gufi.js"
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
"start": "node bin/gufi.js"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@gufi/column-types": "file:../../libs/column-types",
|
|
26
25
|
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
|
|
27
26
|
"@types/prompts": "^2.4.9",
|
|
28
27
|
"@types/ws": "^8.18.1",
|