@tableau/mcp-server 2.22.0 → 2.24.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.
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Public, dependency-free provider contract for feature gating.
3
+ *
4
+ * This module is exposed as a package subpath (`@tableau/mcp-server/features/featureGateProvider`)
5
+ * so external deployments can implement a custom feature gate provider against a stable type,
6
+ * without importing the server's internal config schemas. Keep it free of runtime dependencies.
7
+ */
8
+ /**
9
+ * Feature gate provider interface
10
+ */
11
+ export interface FeatureGateProvider {
12
+ /**
13
+ * Check if a feature is enabled
14
+ */
15
+ isFeatureEnabled(featureName: string): boolean;
16
+ }