@adobe/helix-config 3.4.3 → 3.4.4
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
|
+
## [3.4.4](https://github.com/adobe/helix-config/compare/v3.4.3...v3.4.4) (2024-07-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add config-admin role ([#126](https://github.com/adobe/helix-config/issues/126)) ([baa2ba4](https://github.com/adobe/helix-config/commit/baa2ba46c4a741b300c2cc0114654ac6c071bcad))
|
|
7
|
+
|
|
1
8
|
## [3.4.3](https://github.com/adobe/helix-config/compare/v3.4.2...v3.4.3) (2024-07-08)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/types/org-config.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export interface HttpsNsAdobeComHelixConfigUser {
|
|
|
43
43
|
id: string;
|
|
44
44
|
email: string;
|
|
45
45
|
name?: string;
|
|
46
|
-
roles: ('admin' | 'author' | 'publish' | 'config')[];
|
|
46
|
+
roles: ('admin' | 'author' | 'publish' | 'config' | 'config_admin')[];
|
|
47
47
|
}
|
|
48
48
|
export interface Groups {
|
|
49
49
|
[k: string]: Group;
|
|
@@ -228,7 +228,7 @@ export interface AdminAccessConfig {
|
|
|
228
228
|
}
|
|
229
229
|
export interface Role {
|
|
230
230
|
/**
|
|
231
|
-
* The email glob of the users
|
|
231
|
+
* The email glob of the users or a group reference for the respective role.
|
|
232
232
|
*
|
|
233
233
|
* This interface was referenced by `Role`'s JSON-Schema definition
|
|
234
234
|
* via the `patternProperty` "^[a-z-_]+$".
|
package/types/site-config.d.ts
CHANGED
|
@@ -236,7 +236,7 @@ export interface AdminAccessConfig {
|
|
|
236
236
|
}
|
|
237
237
|
export interface Role {
|
|
238
238
|
/**
|
|
239
|
-
* The email glob of the users
|
|
239
|
+
* The email glob of the users or a group reference for the respective role.
|
|
240
240
|
*
|
|
241
241
|
* This interface was referenced by `Role`'s JSON-Schema definition
|
|
242
242
|
* via the `patternProperty` "^[a-z-_]+$".
|