@adobe/spacecat-shared-http-utils 1.17.6 → 1.17.7
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 +7 -0
- package/package.json +1 -1
- package/src/auth/handlers/ims.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-http-utils-v1.17.7](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.17.6...@adobe/spacecat-shared-http-utils-v1.17.7) (2025-10-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* allow more group to have admin user ([#1026](https://github.com/adobe/spacecat-shared/issues/1026)) ([512066c](https://github.com/adobe/spacecat-shared/commit/512066cf52cbfc6e386cc4b636d7187fd4980325))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-http-utils-v1.17.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.17.5...@adobe/spacecat-shared-http-utils-v1.17.6) (2025-09-25)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/auth/handlers/ims.js
CHANGED
|
@@ -43,6 +43,12 @@ const ADMIN_GROUP_IDENT = {
|
|
|
43
43
|
879529884, // IMS admin group for prod
|
|
44
44
|
901092291, // IMS admin group for on call engineers
|
|
45
45
|
],
|
|
46
|
+
'42A126776407096B0A495E50': [
|
|
47
|
+
945801205, // IMS admin group for reference demo org users
|
|
48
|
+
],
|
|
49
|
+
'38931D6666E3ECDA0A495E80': [
|
|
50
|
+
945802231, // IMS admin group for AEM Showcase org users
|
|
51
|
+
],
|
|
46
52
|
};
|
|
47
53
|
const SERVICE_CODE = 'dx_aem_perf';
|
|
48
54
|
const loadConfig = (context) => {
|