@cloudcli-ai/cloudcli 1.31.1 → 1.31.3

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": "@cloudcli-ai/cloudcli",
3
- "version": "1.31.1",
3
+ "version": "1.31.3",
4
4
  "description": "A web-based UI for Claude Code CLI",
5
5
  "type": "module",
6
6
  "main": "dist-server/server/index.js",
@@ -91,6 +91,7 @@
91
91
  "chokidar": "^4.0.3",
92
92
  "class-variance-authority": "^0.7.1",
93
93
  "clsx": "^2.1.1",
94
+ "cmdk": "^1.1.1",
94
95
  "cors": "^2.8.5",
95
96
  "cross-spawn": "^7.0.3",
96
97
  "express": "^4.18.2",
@@ -65,6 +65,7 @@ const migrateLegacySessionNames = (db: Database): void => {
65
65
  COALESCE(created_at, CURRENT_TIMESTAMP),
66
66
  COALESCE(updated_at, CURRENT_TIMESTAMP)
67
67
  FROM session_names
68
+ WHERE true
68
69
  ON CONFLICT(session_id) DO UPDATE SET
69
70
  provider = excluded.provider,
70
71
  custom_name = COALESCE(excluded.custom_name, sessions.custom_name),
@@ -51,7 +51,7 @@ export const CURSOR_MODELS = {
51
51
  { value: "grok", label: "Grok" },
52
52
  ],
53
53
 
54
- DEFAULT: "gpt-5-3-codex",
54
+ DEFAULT: "gpt-5.3-codex",
55
55
  };
56
56
 
57
57
  /**
@@ -94,3 +94,13 @@ export const GEMINI_MODELS = {
94
94
 
95
95
  DEFAULT: "gemini-3.1-pro-preview",
96
96
  };
97
+
98
+ /**
99
+ * Ordered provider registry. Display order in selection UIs.
100
+ */
101
+ export const PROVIDERS = [
102
+ { id: "claude", name: "Anthropic", models: CLAUDE_MODELS },
103
+ { id: "codex", name: "OpenAI", models: CODEX_MODELS },
104
+ { id: "gemini", name: "Google", models: GEMINI_MODELS },
105
+ { id: "cursor", name: "Cursor", models: CURSOR_MODELS },
106
+ ];