@adobe/spacecat-shared-data-access 2.97.2 → 2.99.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.99.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.98.0...@adobe/spacecat-shared-data-access-v2.99.0) (2026-01-30)
2
+
3
+
4
+ ### Features
5
+
6
+ * **configuration:** add QUARTERLY job interval ([#1302](https://github.com/adobe/spacecat-shared/issues/1302)) ([30d3c10](https://github.com/adobe/spacecat-shared/commit/30d3c1006c5f9f3043b103b3a23893664090619f))
7
+
8
+ # [@adobe/spacecat-shared-data-access-v2.98.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.97.2...@adobe/spacecat-shared-data-access-v2.98.0) (2026-01-29)
9
+
10
+
11
+ ### Features
12
+
13
+ * new flag opted added in edgeoptimizeconfig ([#1294](https://github.com/adobe/spacecat-shared/issues/1294)) ([8386e38](https://github.com/adobe/spacecat-shared/commit/8386e3805e9e67c18e4569428bef7ac5723eb991))
14
+
1
15
  # [@adobe/spacecat-shared-data-access-v2.97.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.97.1...@adobe/spacecat-shared-data-access-v2.97.2) (2026-01-28)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "2.97.2",
3
+ "version": "2.99.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -47,6 +47,7 @@ class Configuration {
47
47
  FORTNIGHTLY_SATURDAY: 'fortnightly-saturday',
48
48
  FORTNIGHTLY_SUNDAY: 'fortnightly-sunday',
49
49
  MONTHLY: 'monthly',
50
+ QUARTERLY: 'quarterly',
50
51
  };
51
52
 
52
53
  static AUDIT_NAME_REGEX = /^[a-z0-9-]+$/;
@@ -343,6 +343,7 @@ export const configSchema = Joi.object({
343
343
  }).optional(),
344
344
  edgeOptimizeConfig: Joi.object({
345
345
  enabled: Joi.boolean().required(),
346
+ opted: Joi.boolean().optional(),
346
347
  }).optional(),
347
348
  contentAiConfig: Joi.object({
348
349
  index: Joi.string().optional(),