ccman 3.3.29 → 3.3.30

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/index.js CHANGED
@@ -326,6 +326,12 @@ function removeDeprecatedKeys(config) {
326
326
  if ("network_access" in config) {
327
327
  delete config.network_access;
328
328
  }
329
+ if ("profile" in config) {
330
+ delete config.profile;
331
+ }
332
+ if ("profiles" in config) {
333
+ delete config.profiles;
334
+ }
329
335
  }
330
336
  function loadExistingCodexConfig(configPath) {
331
337
  if (!fileExists(configPath)) {
@@ -428,7 +434,6 @@ var init_codex = __esm({
428
434
  sandbox_mode: "danger-full-access",
429
435
  windows_wsl_setup_acknowledged: true,
430
436
  approval_policy: "never",
431
- profile: "auto-max",
432
437
  file_opener: "vscode",
433
438
  web_search: "cached",
434
439
  suppress_unstable_features_warning: true,
@@ -455,16 +460,6 @@ var init_codex = __esm({
455
460
  fast_mode: true,
456
461
  personality: true
457
462
  },
458
- profiles: {
459
- "auto-max": {
460
- approval_policy: "never",
461
- sandbox_mode: "workspace-write"
462
- },
463
- review: {
464
- approval_policy: "on-request",
465
- sandbox_mode: "workspace-write"
466
- }
467
- },
468
463
  notice: {
469
464
  hide_gpt5_1_migration_prompt: true
470
465
  }
@@ -9,7 +9,6 @@ disable_response_storage = true
9
9
  sandbox_mode = "danger-full-access"
10
10
  windows_wsl_setup_acknowledged = true
11
11
  approval_policy = "never"
12
- profile = "auto-max"
13
12
  file_opener = "vscode"
14
13
  model_provider = "gmn"
15
14
  web_search = "cached"
@@ -38,14 +37,6 @@ shell_snapshot = true
38
37
  fast_mode = true
39
38
  personality = true
40
39
 
41
- [profiles.auto-max]
42
- approval_policy = "never"
43
- sandbox_mode = "workspace-write"
44
-
45
- [profiles.review]
46
- approval_policy = "on-request"
47
- sandbox_mode = "workspace-write"
48
-
49
40
  [notice]
50
41
  hide_gpt5_1_migration_prompt = true
51
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccman",
3
- "version": "3.3.29",
3
+ "version": "3.3.30",
4
4
  "type": "module",
5
5
  "description": "Manage Codex, Claude Code, Gemini CLI, OpenCode, OpenClaw, and MCP API service provider configurations",
6
6
  "main": "./dist/index.js",