@mablhq/mabl-cli 2.73.2 → 2.73.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mablhq/mabl-cli",
3
- "version": "2.73.2",
3
+ "version": "2.73.3",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "The official mabl command line interface tool",
6
6
  "main": "index.js",
package/util/analytics.js CHANGED
@@ -77,11 +77,11 @@ async function trackMcpEvent(command) {
77
77
  if (!trackingInfo.userId) {
78
78
  return;
79
79
  }
80
- const event = `mablMcp - ${command}`;
80
+ const event = 'mablMcp - Tool Used';
81
81
  const properties = {
82
82
  workspaceId: trackingInfo.workspaceId,
83
83
  environment: env_1.ENV,
84
- isMcp: true,
84
+ mcpToolName: command,
85
85
  };
86
86
  await trackEvent(event, trackingInfo.userId, properties);
87
87
  }