@sisense/sdk-cli 1.16.0 → 1.17.1

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.
@@ -1 +1 @@
1
- export declare const PKG_VERSION = "1.16.0";
1
+ export declare const PKG_VERSION = "1.17.1";
@@ -1 +1 @@
1
- export const PKG_VERSION = "1.16.0";
1
+ export const PKG_VERSION = "1.17.1";
package/dist/tracking.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import { trackProductEvent } from '@sisense/sdk-tracking';
2
2
  import { PKG_VERSION } from './package-version.js';
3
- import { TrackingActions } from './constants.js';
4
3
  export const trackExecution = (httpClient, commandName, args) => {
5
4
  const payload = {
6
5
  packageVersion: PKG_VERSION,
@@ -10,6 +9,5 @@ export const trackExecution = (httpClient, commandName, args) => {
10
9
  .map(([k]) => k)
11
10
  .join(', '),
12
11
  };
13
- const action = TrackingActions.Execution;
14
- trackProductEvent(action, payload, httpClient);
12
+ trackProductEvent('sdkCliExec', payload, httpClient);
15
13
  };
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "Sisense",
12
12
  "Compose SDK"
13
13
  ],
14
- "version": "1.16.0",
14
+ "version": "1.17.1",
15
15
  "type": "module",
16
16
  "exports": "./dist/index.js",
17
17
  "main": "./dist/index.js",
@@ -20,12 +20,12 @@
20
20
  "license": "SEE LICENSE IN LICENSE.md",
21
21
  "bin": "./dist/index.js",
22
22
  "dependencies": {
23
- "@sisense/sdk-common": "^1.16.0",
24
- "@sisense/sdk-data": "^1.16.0",
25
- "@sisense/sdk-modeling": "^1.16.0",
26
- "@sisense/sdk-query-client": "^1.16.0",
27
- "@sisense/sdk-rest-client": "^1.16.0",
28
- "@sisense/sdk-tracking": "^1.16.0",
23
+ "@sisense/sdk-common": "^1.17.1",
24
+ "@sisense/sdk-data": "^1.17.1",
25
+ "@sisense/sdk-modeling": "^1.17.1",
26
+ "@sisense/sdk-query-client": "^1.17.1",
27
+ "@sisense/sdk-rest-client": "^1.17.1",
28
+ "@sisense/sdk-tracking": "^1.17.1",
29
29
  "cross-fetch": "^4.0.0",
30
30
  "inquirer": "^8.1.2",
31
31
  "js-levenshtein": "^1.1.6",
@@ -1,3 +0,0 @@
1
- export declare enum TrackingActions {
2
- Execution = "sdkCliExec"
3
- }
package/dist/constants.js DELETED
@@ -1,4 +0,0 @@
1
- export var TrackingActions;
2
- (function (TrackingActions) {
3
- TrackingActions["Execution"] = "sdkCliExec";
4
- })(TrackingActions = TrackingActions || (TrackingActions = {}));