@adobe/spacecat-shared-data-access 2.106.1 → 2.108.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
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v2.108.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.107.0...@adobe/spacecat-shared-data-access-v2.108.0) (2026-02-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* extend weekly-slot intervals from 18 to 23 ([#1345](https://github.com/adobe/spacecat-shared/issues/1345)) ([6f46aef](https://github.com/adobe/spacecat-shared/commit/6f46aef3b9dfaac35c928648201135b1fbe8857b))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.107.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.106.1...@adobe/spacecat-shared-data-access-v2.107.0) (2026-02-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add weekly-slot job intervals for staggered audits ([#1344](https://github.com/adobe/spacecat-shared/issues/1344)) ([5b85f6c](https://github.com/adobe/spacecat-shared/commit/5b85f6c9a98e39756c241d2d96db865a111f151b))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.106.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.106.0...@adobe/spacecat-shared-data-access-v2.106.1) (2026-02-12)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -49,6 +49,10 @@ class Configuration {
|
|
|
49
49
|
FORTNIGHTLY_SUNDAY: 'fortnightly-sunday',
|
|
50
50
|
MONTHLY: 'monthly',
|
|
51
51
|
QUARTERLY: 'quarterly',
|
|
52
|
+
// Staggered weekly slots for split audits (e.g. geo-brand-presence-free-1..23)
|
|
53
|
+
...Object.fromEntries(
|
|
54
|
+
Array.from({ length: 23 }, (_, i) => [`WEEKLY_SLOT_${i + 1}`, `weekly-slot-${i + 1}`]),
|
|
55
|
+
),
|
|
52
56
|
};
|
|
53
57
|
|
|
54
58
|
static AUDIT_NAME_REGEX = /^[a-z0-9-]+$/;
|