@ovh-ux/ovh-at-internet 0.28.2 → 0.29.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/CHANGELOG.md +19 -0
- package/dist/config.js +2 -2
- package/dist/index.js +4 -4
- package/dist/manager-tms.js +2 -2
- package/dist/ovh-at-internet.js +5 -5
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.29.0](https://github.com/ovh/manager/compare/@ovh-ux/ovh-at-internet@0.28.3...@ovh-ux/ovh-at-internet@0.29.0) (2025-12-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* update core modules and configuration ([3655306](https://github.com/ovh/manager/commit/3655306a8ad31a88d8c42657a323fd119d4baad3)), closes [#MANAGER-20410](https://github.com/ovh/manager/issues/MANAGER-20410)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.28.3](https://github.com/ovh/manager/compare/@ovh-ux/ovh-at-internet@0.28.2...@ovh-ux/ovh-at-internet@0.28.3) (2025-12-15)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @ovh-ux/ovh-at-internet
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.28.2](https://github.com/ovh/manager/compare/@ovh-ux/ovh-at-internet@0.28.1...@ovh-ux/ovh-at-internet@0.28.2) (2025-12-10)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @ovh-ux/ovh-at-internet
|
package/dist/config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { debug, isEmpty } from './utils';
|
|
2
|
-
import { PCI_PROJECT_MODE_VALUES } from './constants';
|
|
1
|
+
import { debug, isEmpty } from './utils.js';
|
|
2
|
+
import { PCI_PROJECT_MODE_VALUES } from './constants.js';
|
|
3
3
|
export class OvhAtInternetConfig {
|
|
4
4
|
constructor() {
|
|
5
5
|
this.enabled = true;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { default } from './ovh-at-internet';
|
|
2
|
-
export * from './config';
|
|
3
|
-
export * from './constants';
|
|
4
|
-
export * from './track';
|
|
1
|
+
export { default } from './ovh-at-internet.js';
|
|
2
|
+
export * from './config.js';
|
|
3
|
+
export * from './constants.js';
|
|
4
|
+
export * from './track.js';
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/dist/manager-tms.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { debug } from './utils';
|
|
2
|
-
import { TMS_SCRIPT_URL } from './constants';
|
|
1
|
+
import { debug } from './utils.js';
|
|
2
|
+
import { TMS_SCRIPT_URL } from './constants.js';
|
|
3
3
|
function getVisitorId() {
|
|
4
4
|
const name = 'clientSideUserId';
|
|
5
5
|
const value = `; ${document.cookie}`;
|
package/dist/ovh-at-internet.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { OvhAtInternetConfig } from './config';
|
|
2
|
-
import { AT_INTERNET_CUSTOM_PROPS, AT_INTERNET_LEVEL2, AT_INTERNET_WEBSITE, } from './constants';
|
|
3
|
-
import { loadManagerTMS } from './manager-tms';
|
|
4
|
-
import { capitalize, debug, mapValues } from './utils';
|
|
5
|
-
import initMixCommander from './mix-commander';
|
|
1
|
+
import { OvhAtInternetConfig } from './config.js';
|
|
2
|
+
import { AT_INTERNET_CUSTOM_PROPS, AT_INTERNET_LEVEL2, AT_INTERNET_WEBSITE, } from './constants.js';
|
|
3
|
+
import { loadManagerTMS } from './manager-tms.js';
|
|
4
|
+
import { capitalize, debug, mapValues } from './utils.js';
|
|
5
|
+
import initMixCommander from './mix-commander.js';
|
|
6
6
|
function getPageTrackingData(page) {
|
|
7
7
|
const parts = ((page === null || page === void 0 ? void 0 : page.name) || '').split('::');
|
|
8
8
|
const len = parts === null || parts === void 0 ? void 0 : parts.length;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ovh-ux/ovh-at-internet",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"description": "ATInternet tracking library for OVHcloud.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"at-internet",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"license": "BSD-3-Clause",
|
|
19
19
|
"sideEffects": false,
|
|
20
|
+
"type": "module",
|
|
20
21
|
"main": "dist/index.js",
|
|
21
22
|
"module": "dist/index.js",
|
|
22
23
|
"types": "./dist/types/index.d.ts",
|
|
@@ -25,13 +26,14 @@
|
|
|
25
26
|
"types"
|
|
26
27
|
],
|
|
27
28
|
"scripts": {
|
|
28
|
-
"build": "tsc",
|
|
29
|
-
"dev": "tsc",
|
|
29
|
+
"build": "tsc && tsc-alias",
|
|
30
|
+
"dev": "tsc && tsc-alias",
|
|
30
31
|
"dev:watch": "tsc --watch",
|
|
31
|
-
"prepare": "tsc"
|
|
32
|
+
"prepare": "tsc && tsc-alias"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
|
-
"@ovh-ux/manager-config": "^8.8.
|
|
35
|
+
"@ovh-ux/manager-config": "^8.8.4",
|
|
36
|
+
"tsc-alias": "^1.8.16"
|
|
35
37
|
},
|
|
36
38
|
"peerDependencies": {
|
|
37
39
|
"@ovh-ux/manager-config": "^8.0.1"
|