@adobe/spacecat-shared-data-access 3.18.0 → 3.20.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.20.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.19.0...@adobe/spacecat-shared-data-access-v3.20.0) (2026-03-13)
2
+
3
+ ### Features
4
+
5
+ * add OFFSITE_BRAND_PRESENCE audit type ([#1437](https://github.com/adobe/spacecat-shared/issues/1437)) ([5ffe54e](https://github.com/adobe/spacecat-shared/commit/5ffe54e740a4645b881c905fb6f1c2d2c47e556e))
6
+
7
+ ## [@adobe/spacecat-shared-data-access-v3.19.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.18.0...@adobe/spacecat-shared-data-access-v3.19.0) (2026-03-13)
8
+
9
+ ### Features
10
+
11
+ * **data-access:** add PRE_ONBOARDING status to PlgOnboarding entity ([#1433](https://github.com/adobe/spacecat-shared/issues/1433)) ([69b35d7](https://github.com/adobe/spacecat-shared/commit/69b35d77c5f0b2c67ed153227f60198527e530d4))
12
+
1
13
  ## [@adobe/spacecat-shared-data-access-v3.18.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.17.0...@adobe/spacecat-shared-data-access-v3.18.0) (2026-03-12)
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.18.0",
3
+ "version": "3.20.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -90,6 +90,7 @@ class Audit extends BaseModel {
90
90
  COMMERCE_PRODUCT_ENRICHMENTS_YEARLY: 'commerce-product-enrichments-yearly',
91
91
  COMMERCE_PRODUCT_PAGE_ENRICHMENT: 'commerce-product-page-enrichment',
92
92
  COMMERCE_PRODUCT_CATALOG_ENRICHMENT: 'commerce-product-catalog-enrichment',
93
+ OFFSITE_BRAND_PRESENCE: 'offsite-brand-presence',
93
94
  };
94
95
 
95
96
  static AUDIT_TYPE_PROPERTIES = {
@@ -13,6 +13,7 @@
13
13
  import type { BaseCollection, BaseModel } from '../index';
14
14
 
15
15
  export type PlgOnboardingStatus =
16
+ | 'PRE_ONBOARDING'
16
17
  | 'IN_PROGRESS'
17
18
  | 'ONBOARDED'
18
19
  | 'ERROR'
@@ -27,6 +27,7 @@ class PlgOnboarding extends BaseModel {
27
27
  static DOMAIN_PATTERN = /^[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/;
28
28
 
29
29
  static STATUSES = {
30
+ PRE_ONBOARDING: 'PRE_ONBOARDING',
30
31
  IN_PROGRESS: 'IN_PROGRESS',
31
32
  ONBOARDED: 'ONBOARDED',
32
33
  ERROR: 'ERROR',
@@ -18,3 +18,16 @@ export {
18
18
  Site,
19
19
  SiteCollection,
20
20
  };
21
+
22
+ export {
23
+ Config,
24
+ configSchema,
25
+ validateConfiguration,
26
+ extractWellKnownTags,
27
+ IMPORT_TYPES,
28
+ IMPORT_DESTINATIONS,
29
+ IMPORT_SOURCES,
30
+ IMPORT_TYPE_SCHEMAS,
31
+ DEFAULT_IMPORT_CONFIGS,
32
+ DEFAULT_CONFIG,
33
+ } from './config.js';