@adobe/spacecat-shared-data-access 3.1.0 → 3.3.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-v3.3.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.2.0...@adobe/spacecat-shared-data-access-v3.3.0) (2026-02-26)
2
+
3
+ ### Features
4
+
5
+ * **data-access:** add yearly job interval ([#1380](https://github.com/adobe/spacecat-shared/issues/1380)) ([422f301](https://github.com/adobe/spacecat-shared/commit/422f301bd6d8e3f4565b0790c39adf511855da69))
6
+
7
+ ## [@adobe/spacecat-shared-data-access-v3.2.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.1.0...@adobe/spacecat-shared-data-access-v3.2.0) (2026-02-21)
8
+
9
+ ### Features
10
+
11
+ * cloud manager client ([#1335](https://github.com/adobe/spacecat-shared/issues/1335)) ([2e4b013](https://github.com/adobe/spacecat-shared/commit/2e4b01359641706d633c16907b8292334581ce39))
12
+
1
13
  ## [@adobe/spacecat-shared-data-access-v3.1.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.0.1...@adobe/spacecat-shared-data-access-v3.1.0) (2026-02-18)
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": "3.1.0",
3
+ "version": "3.3.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -49,6 +49,7 @@ class Configuration {
49
49
  FORTNIGHTLY_SUNDAY: 'fortnightly-sunday',
50
50
  MONTHLY: 'monthly',
51
51
  QUARTERLY: 'quarterly',
52
+ YEARLY: 'yearly',
52
53
  // Staggered weekly slots for split audits (e.g. geo-brand-presence-free-1..23)
53
54
  ...Object.fromEntries(
54
55
  Array.from({ length: 23 }, (_, i) => [`WEEKLY_SLOT_${i + 1}`, `weekly-slot-${i + 1}`]),
@@ -41,6 +41,7 @@ export interface CodeConfig {
41
41
  ref: string;
42
42
  installationId?: string;
43
43
  url: string;
44
+ s3StoragePath?: string;
44
45
  }
45
46
 
46
47
  export type IMPORT_TYPES = {
@@ -89,6 +89,7 @@ const schema = new SchemaBuilder(Site, SiteCollection)
89
89
  ref: { type: 'string', required: true },
90
90
  installationId: { type: 'string', required: false },
91
91
  url: { type: 'string', required: true, validate: (value) => isValidUrl(value) },
92
+ s3StoragePath: { type: 'string', required: false },
92
93
  },
93
94
  })
94
95
  .addAttribute('deliveryType', {