@adobe/spacecat-shared-data-access 2.96.0 → 2.97.1

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.97.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.97.0...@adobe/spacecat-shared-data-access-v2.97.1) (2026-01-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Add a dummy code ([#1283](https://github.com/adobe/spacecat-shared/issues/1283)) ([94e4ee1](https://github.com/adobe/spacecat-shared/commit/94e4ee121f5d5cfad14b4a7f73c0069515aa34be))
7
+
8
+ # [@adobe/spacecat-shared-data-access-v2.97.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.96.0...@adobe/spacecat-shared-data-access-v2.97.0) (2026-01-22)
9
+
10
+
11
+ ### Features
12
+
13
+ * **AGENTCOM-302:** add new audit type for commerce product enrichments ([#1282](https://github.com/adobe/spacecat-shared/issues/1282)) ([7f3bfcc](https://github.com/adobe/spacecat-shared/commit/7f3bfcc9625bdd024173cf3c1bbf9182a3075fc2))
14
+
1
15
  # [@adobe/spacecat-shared-data-access-v2.96.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.95.0...@adobe/spacecat-shared-data-access-v2.96.0) (2026-01-16)
2
16
 
3
17
 
package/README.md CHANGED
@@ -100,9 +100,9 @@ npm install @adobe/spacecat-shared-data-access
100
100
  ### Suggestion
101
101
  - **suggestionId** (String): Unique identifier for the suggestion.
102
102
  - **opportunityId** (String): ID of the associated opportunity.
103
- - **createdAt** (String): Timestamp of creation.
104
103
  - **updatedAt** (String): Timestamp of the last update.
105
- - **status** (String): Status of the suggestion (NEW, APPROVED, IN_PROGRESS, SKIPPED, FIXED, ERROR, OUTDATED).
104
+ - **createdAt** (String): Timestamp of creation.
105
+ - **status** (String): Status of the suggestion (NEW, APPROVED, IN_PROGRESS, SKIPPED, FIXED, ERROR, OUTDATED, PENDING_VALIDATION, REJECTED).
106
106
  - **type** (String): Type of the suggestion (CODE_CHANGE, CONTENT_UPDATE, REDIRECT_UPDATE, METADATA_UPDATE, AI_INSIGHTS, CONFIG_UPDATE).
107
107
  - **rank** (Number): Rank/priority of the suggestion.
108
108
  - **data** (Object): Data payload for the suggestion.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "2.96.0",
3
+ "version": "2.97.1",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -83,6 +83,7 @@ class Audit extends BaseModel {
83
83
  NO_CTA_ABOVE_THE_FOLD: 'no-cta-above-the-fold',
84
84
  TOC: 'toc',
85
85
  WIKIPEDIA_ANALYSIS: 'wikipedia-analysis',
86
+ COMMERCE_PRODUCT_ENRICHMENTS: 'commerce-product-enrichments',
86
87
  };
87
88
 
88
89
  static AUDIT_TYPE_PROPERTIES = {
@@ -16,7 +16,7 @@ import type {
16
16
 
17
17
  export type EntitlementStatus = 'ACTIVE' | 'SUSPENDED' | 'ENDED';
18
18
  export type EntitlementTier = 'FREE_TRIAL' | 'PAID';
19
- export type EntitlementProductCode = 'LLMO' | 'ASO';
19
+ export type EntitlementProductCode = 'LLMO' | 'ASO' | 'ACO';
20
20
 
21
21
  export interface Entitlement extends BaseModel {
22
22
  getProductCode(): EntitlementProductCode;
@@ -32,6 +32,7 @@ class Suggestion extends BaseModel {
32
32
  ERROR: 'ERROR',
33
33
  OUTDATED: 'OUTDATED',
34
34
  PENDING_VALIDATION: 'PENDING_VALIDATION',
35
+ REJECTED: 'REJECTED',
35
36
  };
36
37
 
37
38
  static TYPES = {
@@ -43,7 +44,7 @@ class Suggestion extends BaseModel {
43
44
  CONFIG_UPDATE: 'CONFIG_UPDATE',
44
45
  };
45
46
 
46
- // add your customized method here
47
+ // add your customized method here
47
48
  }
48
49
 
49
50
  export default Suggestion;