Skip to content

Commit 6f46aef

Browse files
dzehnderclaude
andauthored
feat: extend weekly-slot intervals from 18 to 23 (#1345)
## Summary - Add `WEEKLY_SLOT_19` through `WEEKLY_SLOT_23` to JOB_INTERVALS enum (5 empty slots for future growth) ## Related PRs - adobe/spacecat-audit-worker — `feat/extend-geo-brand-splits-to-23` - adobe/spacecat-api-service — `feat/extend-geo-brand-splits-to-23` - adobe/spacecat-infrastructure — `feat/extend-geo-brand-splits-to-23` ## Test plan - [x] Linting clean 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4656ead commit 6f46aef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/spacecat-shared-data-access/src/models/configuration/configuration.model.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ class Configuration {
4949
FORTNIGHTLY_SUNDAY: 'fortnightly-sunday',
5050
MONTHLY: 'monthly',
5151
QUARTERLY: 'quarterly',
52-
// Staggered weekly slots for split audits (e.g. geo-brand-presence-free-1..18)
52+
// Staggered weekly slots for split audits (e.g. geo-brand-presence-free-1..23)
5353
...Object.fromEntries(
54-
Array.from({ length: 18 }, (_, i) => [`WEEKLY_SLOT_${i + 1}`, `weekly-slot-${i + 1}`]),
54+
Array.from({ length: 23 }, (_, i) => [`WEEKLY_SLOT_${i + 1}`, `weekly-slot-${i + 1}`]),
5555
),
5656
};
5757

0 commit comments

Comments
 (0)