@akson/cortex-analytics 0.8.0 → 0.8.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.
- package/README.md +56 -814
- package/dist/cli.js +11 -18
- package/dist/cli.js.map +1 -1
- package/dist/index.js +11 -18
- package/dist/index.js.map +1 -1
- package/package.json +5 -12
package/dist/cli.js
CHANGED
|
@@ -9,13 +9,13 @@ var require_package = __commonJS({
|
|
|
9
9
|
"package.json"(exports, module) {
|
|
10
10
|
module.exports = {
|
|
11
11
|
name: "@akson/cortex-analytics",
|
|
12
|
-
version: "0.8.
|
|
12
|
+
version: "0.8.1",
|
|
13
13
|
description: "Unified CLI for Cortex analytics operations across all platforms",
|
|
14
14
|
type: "module",
|
|
15
15
|
main: "dist/index.js",
|
|
16
16
|
bin: {
|
|
17
17
|
akson: "./dist/cli.js",
|
|
18
|
-
"
|
|
18
|
+
"cortex-analytics": "./dist/cli.js"
|
|
19
19
|
},
|
|
20
20
|
scripts: {
|
|
21
21
|
build: "tsup",
|
|
@@ -26,18 +26,14 @@ var require_package = __commonJS({
|
|
|
26
26
|
"type-check": "tsc --noEmit"
|
|
27
27
|
},
|
|
28
28
|
dependencies: {
|
|
29
|
-
"@akson/cortex-api-google-ads": "^2.0.0",
|
|
30
29
|
"@akson/cortex-gsc": "^0.5.0",
|
|
31
|
-
"@akson/cortex-
|
|
30
|
+
"@akson/cortex-gtm": "^3.0.0",
|
|
32
31
|
"@akson/cortex-posthog": "^0.4.0",
|
|
33
|
-
"@akson/cortex-utilities": "^0.3.0",
|
|
34
|
-
"@types/js-yaml": "^4.0.9",
|
|
35
32
|
chalk: "^5.5.0",
|
|
36
33
|
commander: "^14.0.0",
|
|
37
34
|
inquirer: "^11.1.0",
|
|
38
35
|
ora: "^8.1.1",
|
|
39
|
-
table: "^6.9.0"
|
|
40
|
-
zod: "^3.23.8"
|
|
36
|
+
table: "^6.9.0"
|
|
41
37
|
},
|
|
42
38
|
devDependencies: {
|
|
43
39
|
"@types/inquirer": "^9.0.7",
|
|
@@ -47,9 +43,6 @@ var require_package = __commonJS({
|
|
|
47
43
|
typescript: "^5.9.2",
|
|
48
44
|
vitest: "^3.2.4"
|
|
49
45
|
},
|
|
50
|
-
peerDependencies: {
|
|
51
|
-
typescript: ">=5.0.0"
|
|
52
|
-
},
|
|
53
46
|
engines: {
|
|
54
47
|
node: ">=18.0.0"
|
|
55
48
|
},
|
|
@@ -62,7 +55,7 @@ var require_package = __commonJS({
|
|
|
62
55
|
"gsc",
|
|
63
56
|
"cortex"
|
|
64
57
|
],
|
|
65
|
-
author: "
|
|
58
|
+
author: "Akson <contact@akson.ch>",
|
|
66
59
|
license: "MIT",
|
|
67
60
|
homepage: "https://github.com/antoineschaller/cortex-packages/tree/main/packages/@akson/cortex-analytics",
|
|
68
61
|
repository: {
|
|
@@ -99,7 +92,7 @@ import {
|
|
|
99
92
|
HistoricalAnalyzer,
|
|
100
93
|
SwissMarketAnalyzer,
|
|
101
94
|
loadGoogleAdsConfig
|
|
102
|
-
} from "@akson/cortex-
|
|
95
|
+
} from "@akson/cortex-google-ads";
|
|
103
96
|
import { GSCClient, loadGSCConfig } from "@akson/cortex-gsc";
|
|
104
97
|
import {
|
|
105
98
|
ConfigParser,
|
|
@@ -108,7 +101,7 @@ import {
|
|
|
108
101
|
loadGTMConfig,
|
|
109
102
|
Planner,
|
|
110
103
|
StateManager
|
|
111
|
-
} from "@akson/cortex-
|
|
104
|
+
} from "@akson/cortex-gtm";
|
|
112
105
|
import { loadPostHogConfig, PostHogClient } from "@akson/cortex-posthog";
|
|
113
106
|
import {
|
|
114
107
|
ECOMMERCE_EVENTS,
|
|
@@ -119,7 +112,7 @@ import {
|
|
|
119
112
|
import chalk from "chalk";
|
|
120
113
|
import inquirer from "inquirer";
|
|
121
114
|
|
|
122
|
-
//
|
|
115
|
+
// node_modules/js-yaml/dist/js-yaml.mjs
|
|
123
116
|
function isNothing(subject) {
|
|
124
117
|
return typeof subject === "undefined" || subject === null;
|
|
125
118
|
}
|
|
@@ -8166,7 +8159,7 @@ function getCommands() {
|
|
|
8166
8159
|
examples: ["akson gtm apply", "akson gtm apply --yes --verbose"]
|
|
8167
8160
|
}
|
|
8168
8161
|
],
|
|
8169
|
-
dependencies: ["@akson/cortex-
|
|
8162
|
+
dependencies: ["@akson/cortex-gtm", "Google Service Account Key"]
|
|
8170
8163
|
},
|
|
8171
8164
|
{
|
|
8172
8165
|
module: "Swiss Market Analytics",
|
|
@@ -8361,9 +8354,9 @@ program.command("version-info").description("Show version and dependency informa
|
|
|
8361
8354
|
\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
|
|
8362
8355
|
|
|
8363
8356
|
\u{1F4E6} PACKAGE DEPENDENCIES:
|
|
8364
|
-
\u2022 @akson/cortex-
|
|
8357
|
+
\u2022 @akson/cortex-gtm: GTM operations and configuration
|
|
8365
8358
|
\u2022 @akson/cortex-gsc: Google Search Console integration
|
|
8366
|
-
\u2022 @akson/cortex-
|
|
8359
|
+
\u2022 @akson/cortex-google-ads: Google Ads reporting and analysis
|
|
8367
8360
|
\u2022 @akson/cortex-posthog: PostHog analytics and experiments
|
|
8368
8361
|
\u2022 @akson/cortex-utilities: Shared utilities and types
|
|
8369
8362
|
|