@adobe/spacecat-shared-data-access 2.83.0 → 2.83.2
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.83.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.83.1...@adobe/spacecat-shared-data-access-v2.83.2) (2025-11-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([#1131](https://github.com/adobe/spacecat-shared/issues/1131)) ([d4a3f4a](https://github.com/adobe/spacecat-shared/commit/d4a3f4a653e59e9bdde7926ea8f1a2f9b68739ff))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.83.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.83.0...@adobe/spacecat-shared-data-access-v2.83.1) (2025-11-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Add a dummy code ([#1128](https://github.com/adobe/spacecat-shared/issues/1128)) ([7d8a6d8](https://github.com/adobe/spacecat-shared/commit/7d8a6d829303f2710dd7363d05a511a7ddfbb0d0))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.83.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.82.0...@adobe/spacecat-shared-data-access-v2.83.0) (2025-11-14)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spacecat-shared-data-access",
|
|
3
|
-
"version": "2.83.
|
|
3
|
+
"version": "2.83.2",
|
|
4
4
|
"description": "Shared modules of the Spacecat Services - Data Access",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@adobe/spacecat-shared-utils": "1.66.0",
|
|
42
|
-
"@aws-sdk/client-dynamodb": "3.
|
|
43
|
-
"@aws-sdk/lib-dynamodb": "3.
|
|
42
|
+
"@aws-sdk/client-dynamodb": "3.932.0",
|
|
43
|
+
"@aws-sdk/lib-dynamodb": "3.932.0",
|
|
44
44
|
"@types/joi": "17.2.3",
|
|
45
45
|
"aws-xray-sdk": "3.11.0",
|
|
46
46
|
"electrodb": "3.5.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"pluralize": "8.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"chai": "6.2.
|
|
51
|
+
"chai": "6.2.1",
|
|
52
52
|
"chai-as-promised": "8.0.2",
|
|
53
53
|
"dynamo-db-local": "9.6.0",
|
|
54
54
|
"nock": "14.0.10",
|
|
@@ -29,6 +29,7 @@ class Suggestion extends BaseModel {
|
|
|
29
29
|
FIXED: 'FIXED',
|
|
30
30
|
ERROR: 'ERROR',
|
|
31
31
|
OUTDATED: 'OUTDATED',
|
|
32
|
+
PENDING_VALIDATION: 'PENDING_VALIDATION',
|
|
32
33
|
};
|
|
33
34
|
|
|
34
35
|
static TYPES = {
|
|
@@ -40,7 +41,7 @@ class Suggestion extends BaseModel {
|
|
|
40
41
|
CONFIG_UPDATE: 'CONFIG_UPDATE',
|
|
41
42
|
};
|
|
42
43
|
|
|
43
|
-
// add your customized
|
|
44
|
+
// add your customized method here
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
export default Suggestion;
|