@adobe/spacecat-shared-content-client 1.8.14 → 1.8.16
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 +12 -0
- package/package.json +5 -6
- package/src/clients/content-client.js +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-content-client-v1.8.16](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.8.15...@adobe/spacecat-shared-content-client-v1.8.16) (2026-03-02)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **deps:** update external fixes ([#1223](https://github.com/adobe/spacecat-shared/issues/1223)) ([7ee8461](https://github.com/adobe/spacecat-shared/commit/7ee8461c99223d07a2f47bd6838b6942fcb30f28))
|
|
6
|
+
|
|
7
|
+
## [@adobe/spacecat-shared-content-client-v1.8.15](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.8.14...@adobe/spacecat-shared-content-client-v1.8.15) (2026-02-17)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **data-access:** decouple shared packages for v2/v3 alias wrapper rollout ([#1355](https://github.com/adobe/spacecat-shared/issues/1355)) ([ba48df7](https://github.com/adobe/spacecat-shared/commit/ba48df710e0030c1cb3ef4f90661cff1b548d42f))
|
|
12
|
+
|
|
1
13
|
# [@adobe/spacecat-shared-content-client-v1.8.14](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-content-client-v1.8.13...@adobe/spacecat-shared-content-client-v1.8.14) (2026-01-29)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spacecat-shared-content-client",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.16",
|
|
4
4
|
"description": "Shared modules of the Spacecat Services - Content Client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -36,18 +36,17 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@adobe/helix-universal": "5.4.0",
|
|
38
38
|
"@adobe/spacecat-helix-content-sdk": "1.4.33",
|
|
39
|
-
"@adobe/spacecat-shared-data-access": "2.88.7",
|
|
40
39
|
"@adobe/spacecat-shared-utils": "1.81.1",
|
|
41
|
-
"@aws-sdk/client-secrets-manager": "3.
|
|
40
|
+
"@aws-sdk/client-secrets-manager": "3.1000.0",
|
|
42
41
|
"aws-xray-sdk": "3.12.0",
|
|
43
42
|
"graph-data-structure": "4.5.0"
|
|
44
43
|
},
|
|
45
44
|
"devDependencies": {
|
|
46
|
-
"chai": "6.2.
|
|
45
|
+
"chai": "6.2.2",
|
|
47
46
|
"chai-as-promised": "8.0.2",
|
|
48
47
|
"esmock": "2.7.3",
|
|
49
|
-
"nock": "14.0.
|
|
50
|
-
"sinon": "21.0.
|
|
48
|
+
"nock": "14.0.11",
|
|
49
|
+
"sinon": "21.0.1",
|
|
51
50
|
"sinon-chai": "4.0.1",
|
|
52
51
|
"typescript": "5.9.3"
|
|
53
52
|
}
|
|
@@ -20,7 +20,11 @@ const CONTENT_SOURCE_TYPE_DRIVE_GOOGLE = 'drive.google';
|
|
|
20
20
|
const CONTENT_SOURCE_TYPE_ONEDRIVE = 'onedrive';
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
|
-
* @
|
|
23
|
+
* @typedef {{
|
|
24
|
+
* getId: () => string,
|
|
25
|
+
* getBaseURL: () => string,
|
|
26
|
+
* getHlxConfig: () => any
|
|
27
|
+
* }} Site
|
|
24
28
|
* @typedef {Pick<Console, 'debug' | 'info' | 'warn' | 'error'>} Logging
|
|
25
29
|
*/
|
|
26
30
|
|