@adobe/spacecat-shared-data-access 4.10.0 → 4.11.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,15 @@
1
+ ## [@adobe/spacecat-shared-data-access-v4.11.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.10.1...@adobe/spacecat-shared-data-access-v4.11.0) (2026-07-21)
2
+
3
+ ### Features
4
+
5
+ * add weekly-offsite job interval (LLMO-6401) ([#1834](https://github.com/adobe/spacecat-shared/issues/1834)) ([95afbc7](https://github.com/adobe/spacecat-shared/commit/95afbc70e641d2399bcdc1367cd62a86ed78e756))
6
+
7
+ ## [@adobe/spacecat-shared-data-access-v4.10.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.10.0...@adobe/spacecat-shared-data-access-v4.10.1) (2026-07-21)
8
+
9
+ ### Bug Fixes
10
+
11
+ * add routingEnabled (timestamp) to edgeOptimizeConfig schema ([#1835](https://github.com/adobe/spacecat-shared/issues/1835)) ([bfc17da](https://github.com/adobe/spacecat-shared/commit/bfc17daaeb628d8abaf5c211bbf7aee1b35ed3be))
12
+
1
13
  ## [@adobe/spacecat-shared-data-access-v4.10.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.9.0...@adobe/spacecat-shared-data-access-v4.10.0) (2026-07-20)
2
14
 
3
15
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "4.10.0",
3
+ "version": "4.11.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -41,6 +41,7 @@ class Configuration {
41
41
  DAILY_1AM: 'daily-1am',
42
42
  WEEKLY: 'weekly',
43
43
  WEEKLY_DIGEST_EMAIL: 'weekly-digest-email', // runs on Tuesday for weekly digest emails (LLMO-2682)
44
+ WEEKLY_OFFSITE: 'weekly-offsite', // runs on Tuesday for offsite opportunities (LLMO-6401)
44
45
  EARLY_MONDAY: 'early-monday',
45
46
  EVERY_SATURDAY: 'every-saturday',
46
47
  EVERY_SUNDAY: 'every-sunday',
@@ -449,6 +449,7 @@ export const configSchema = Joi.object({
449
449
  )
450
450
  .optional(),
451
451
  opted: Joi.number().optional(),
452
+ routingEnabled: Joi.number().optional(),
452
453
  stagingDomains: Joi.array().items(
453
454
  Joi.object({
454
455
  domain: Joi.string().required(),