@usabledev/usable-chat 1.161.1 → 1.162.0

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/cli.js +2 -4
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -91730,7 +91730,6 @@ var init_env2 = __esm({
91730
91730
  // Feature Flags
91731
91731
  ENABLE_SANDBOXES: external_exports.string().transform((val) => val === "true").default("false"),
91732
91732
  ENABLE_INTEGRATIONS: external_exports.string().transform((val) => val === "true").default("false"),
91733
- ENABLE_MCP_SERVERS: external_exports.string().transform((val) => val === "true").default("false"),
91734
91733
  ENABLE_BROWSER_FOLDER_MCP: external_exports.string().transform((val) => val === "true").default("false"),
91735
91734
  // Slack Integration (optional - only required when ENABLE_INTEGRATIONS=true)
91736
91735
  SLACK_CLIENT_ID: external_exports.string().min(1).optional(),
@@ -91838,7 +91837,6 @@ var init_env2 = __esm({
91838
91837
  // Feature Flags
91839
91838
  ENABLE_SANDBOXES: process.env.ENABLE_SANDBOXES,
91840
91839
  ENABLE_INTEGRATIONS: process.env.ENABLE_INTEGRATIONS,
91841
- ENABLE_MCP_SERVERS: process.env.ENABLE_MCP_SERVERS,
91842
91840
  ENABLE_BROWSER_FOLDER_MCP: process.env.ENABLE_BROWSER_FOLDER_MCP,
91843
91841
  // Slack Integration
91844
91842
  SLACK_CLIENT_ID: process.env.SLACK_CLIENT_ID,
@@ -91961,7 +91959,6 @@ var init_config = __esm({
91961
91959
  features: {
91962
91960
  enableSandboxes: env.ENABLE_SANDBOXES,
91963
91961
  enableIntegrations: env.ENABLE_INTEGRATIONS,
91964
- enableMcpServers: env.ENABLE_MCP_SERVERS,
91965
91962
  enableBrowserFolderMcp: env.ENABLE_BROWSER_FOLDER_MCP
91966
91963
  },
91967
91964
  slack: {
@@ -104028,6 +104025,7 @@ var init_schema2 = __esm({
104028
104025
  name: varchar("name", { length: 255 }),
104029
104026
  // User display name from Keycloak
104030
104027
  debugMode: boolean4("debug_mode").notNull().default(false),
104028
+ betaFeatures: jsonb("beta_features").notNull().default({}).$type(),
104031
104029
  createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
104032
104030
  updatedAt: timestamp("updated_at", { withTimezone: true }).notNull().defaultNow()
104033
104031
  },
@@ -309085,7 +309083,7 @@ init_tui_select();
309085
309083
  init_model_registry();
309086
309084
 
309087
309085
  // package.json
309088
- var version2 = "1.161.1";
309086
+ var version2 = "1.162.0";
309089
309087
 
309090
309088
  // src/adapters/cli/model-catalog.ts
309091
309089
  init_codex_auth();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usabledev/usable-chat",
3
- "version": "1.161.1",
3
+ "version": "1.162.0",
4
4
  "description": "usable-chat — terminal harness for usable-chat (headless + TUI)",
5
5
  "type": "module",
6
6
  "bin": {