@taiga-ai/mcp-server 0.2.3-dev.197 → 0.2.3-dev.199

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
@@ -11,19 +11,17 @@ import { z } from "zod";
11
11
  function resolveFeatureFlags(env) {
12
12
  return Object.freeze({
13
13
  skills: false,
14
- deployments: true,
15
- monitoring: true,
16
14
  insights: env !== "prod",
17
15
  uiSparring: env !== "prod",
18
16
  flowStudio: env !== "prod",
19
17
  checklists: env !== "prod",
20
- uiStudioWizard: env !== "prod"
18
+ uiStudioWizard: env !== "prod",
19
+ autoMerge: env !== "prod"
21
20
  });
22
21
  }
23
22
  /**
24
- * Safe-default snapshot, resolved as `prod`: `deployments` and `monitoring` are
25
- * GA (on) while the still-gated release toggles (`insights`, `uiSparring`, `flowStudio`, `checklists`) are
26
- * off. Prefer
23
+ * Safe-default snapshot, resolved as `prod`: every still-gated release toggle
24
+ * is off. Prefer
27
25
  * {@link resolveFeatureFlags} with the app's real environment. Retained for
28
26
  * consumers that have no environment of their own — notably the published MCP
29
27
  * server — so an unconfigured runtime never leaks a work-in-progress feature.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ai/mcp-server",
3
- "version": "0.2.3-dev.197",
3
+ "version": "0.2.3-dev.199",
4
4
  "description": "MCP server for Taiga -- gives AI assistants access to documents, skills, and projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",