@tableau/mcp-server 2.24.0 → 3.6.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.
- package/CONTRIBUTING.md +4 -0
- package/build/features/featureGateProvider.d.ts +6 -2
- package/build/index.js +260 -317
- package/build/index.js.map +4 -4
- package/build/telemetry/tracing.js +2 -2
- package/build/telemetry/tracing.js.map +3 -3
- package/build/web/apps/dist/hitl-confirm.html +134 -0
- package/build/web/apps/dist/mcp-app.html +9 -9
- package/package.json +1 -1
package/CONTRIBUTING.md
CHANGED
|
@@ -61,6 +61,10 @@ Use GitHub Issues page to submit issues, enhancement requests and discuss ideas.
|
|
|
61
61
|
|
|
62
62
|
> **NOTE**: Be sure to [sync your fork](https://help.github.com/articles/syncing-a-fork/) before making a pull request.
|
|
63
63
|
|
|
64
|
+
# Releasing
|
|
65
|
+
|
|
66
|
+
Normal releases and the hotfix process (shipping a fix off an already-deployed version without moving the npm `latest` dist-tag) are documented in [docs/RELEASE.md](docs/RELEASE.md).
|
|
67
|
+
|
|
64
68
|
# Contributor License Agreement ("CLA")
|
|
65
69
|
In order to accept your pull request, we need you to submit a CLA. You only need
|
|
66
70
|
to do this once to work on any of Salesforce's open source projects.
|
|
@@ -10,7 +10,11 @@
|
|
|
10
10
|
*/
|
|
11
11
|
export interface FeatureGateProvider {
|
|
12
12
|
/**
|
|
13
|
-
* Check if a feature is enabled
|
|
13
|
+
* Check if a feature is enabled.
|
|
14
|
+
*
|
|
15
|
+
* Returns a Promise so providers can perform a real async lookup per invocation
|
|
16
|
+
* (e.g. a cloud provider querying DynamoDB). Synchronous providers simply resolve
|
|
17
|
+
* an already-in-memory value.
|
|
14
18
|
*/
|
|
15
|
-
isFeatureEnabled(featureName: string): boolean
|
|
19
|
+
isFeatureEnabled(featureName: string): Promise<boolean>;
|
|
16
20
|
}
|