@adobe/spacecat-shared-data-access 2.106.0 → 2.107.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.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)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* 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))
|
|
7
|
+
|
|
8
|
+
# [@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)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* enabled removal ([#1343](https://github.com/adobe/spacecat-shared/issues/1343)) ([3508c38](https://github.com/adobe/spacecat-shared/commit/3508c380b20994567ac7a5efc598bdc9cd1559c7))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.106.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.105.1...@adobe/spacecat-shared-data-access-v2.106.0) (2026-02-11)
|
|
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..18)
|
|
53
|
+
...Object.fromEntries(
|
|
54
|
+
Array.from({ length: 18 }, (_, i) => [`WEEKLY_SLOT_${i + 1}`, `weekly-slot-${i + 1}`]),
|
|
55
|
+
),
|
|
52
56
|
};
|
|
53
57
|
|
|
54
58
|
static AUDIT_NAME_REGEX = /^[a-z0-9-]+$/;
|
|
@@ -342,7 +342,7 @@ export const configSchema = Joi.object({
|
|
|
342
342
|
forwardedHost: Joi.string().optional(),
|
|
343
343
|
}).optional(),
|
|
344
344
|
edgeOptimizeConfig: Joi.object({
|
|
345
|
-
enabled: Joi.boolean().
|
|
345
|
+
enabled: Joi.boolean().optional(),
|
|
346
346
|
opted: Joi.number().optional(),
|
|
347
347
|
}).optional(),
|
|
348
348
|
contentAiConfig: Joi.object({
|