@adobe/spacecat-shared-data-access 2.97.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,10 @@
|
|
|
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
|
+
|
|
1
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)
|
|
2
9
|
|
|
3
10
|
|
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
|
-
- **
|
|
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
|
@@ -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
|
|
47
|
+
// add your customized method here
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
export default Suggestion;
|