@adobe/spacecat-shared-data-access 1.15.3 → 1.15.4
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 +7 -0
- package/package.json +1 -1
- package/src/models/audit.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v1.15.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.15.3...@adobe/spacecat-shared-data-access-v1.15.4) (2024-02-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add experimentation type audit ([#147](https://github.com/adobe/spacecat-shared/issues/147)) ([221fa29](https://github.com/adobe/spacecat-shared/commit/221fa296799a9004c991a9f3656e735d4babd612))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-data-access-v1.15.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.15.2...@adobe/spacecat-shared-data-access-v1.15.3) (2024-02-08)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/models/audit.js
CHANGED
|
@@ -15,6 +15,7 @@ import { Base } from './base.js';
|
|
|
15
15
|
|
|
16
16
|
export const AUDIT_TYPE_404 = '404';
|
|
17
17
|
export const AUDIT_TYPE_BROKEN_BACKLINKS = 'broken-backlinks';
|
|
18
|
+
export const AUDIT_TYPE_EXPERIMENTATION = 'experimentation';
|
|
18
19
|
export const AUDIT_TYPE_ORGANIC_KEYWORDS = 'organic-keywords';
|
|
19
20
|
export const AUDIT_TYPE_ORGANIC_TRAFFIC = 'organic-traffic';
|
|
20
21
|
export const AUDIT_TYPE_CWV = 'cwv';
|
|
@@ -26,6 +27,7 @@ const EXPIRES_IN_DAYS = 30;
|
|
|
26
27
|
const AUDIT_TYPE_PROPERTIES = {
|
|
27
28
|
[AUDIT_TYPE_404]: [],
|
|
28
29
|
[AUDIT_TYPE_BROKEN_BACKLINKS]: [],
|
|
30
|
+
[AUDIT_TYPE_EXPERIMENTATION]: [],
|
|
29
31
|
[AUDIT_TYPE_ORGANIC_KEYWORDS]: [],
|
|
30
32
|
[AUDIT_TYPE_ORGANIC_TRAFFIC]: [],
|
|
31
33
|
[AUDIT_TYPE_CWV]: [],
|