@adobe/helix-config 3.9.3 → 3.9.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.9.4](https://github.com/adobe/helix-config/compare/v3.9.3...v3.9.4) (2024-07-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix schema ([#148](https://github.com/adobe/helix-config/issues/148)) ([43e13d2](https://github.com/adobe/helix-config/commit/43e13d26c1045001248fb3f002b53fcb71b820d0))
|
|
7
|
+
|
|
1
8
|
## [3.9.3](https://github.com/adobe/helix-config/compare/v3.9.2...v3.9.3) (2024-07-22)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"patternProperties": {
|
|
18
18
|
"^/[a-zA-Z0-9-/.]*\\*{0,2}$": {
|
|
19
19
|
"type": "array",
|
|
20
|
-
"items":
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
"items": {
|
|
21
|
+
"$ref": "https://ns.adobe.com/helix/config/common#/definitions/keyValuePair"
|
|
22
|
+
}
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"additionalProperties": false
|
|
@@ -102,7 +102,7 @@ export interface HelixHeadersConfig {
|
|
|
102
102
|
* This interface was referenced by `HelixHeadersConfig`'s JSON-Schema definition
|
|
103
103
|
* via the `patternProperty` "^/[a-zA-Z0-9-/.]*\*{0,2}$".
|
|
104
104
|
*/
|
|
105
|
-
[k: string]: []
|
|
105
|
+
[k: string]: KeyValuePair[];
|
|
106
106
|
}
|
|
107
107
|
export interface KeyValuePair {
|
|
108
108
|
key: string;
|
package/types/site-config.d.ts
CHANGED
|
@@ -110,7 +110,7 @@ export interface HelixHeadersConfig {
|
|
|
110
110
|
* This interface was referenced by `HelixHeadersConfig`'s JSON-Schema definition
|
|
111
111
|
* via the `patternProperty` "^/[a-zA-Z0-9-/.]*\*{0,2}$".
|
|
112
112
|
*/
|
|
113
|
-
[k: string]: []
|
|
113
|
+
[k: string]: KeyValuePair[];
|
|
114
114
|
}
|
|
115
115
|
export interface KeyValuePair {
|
|
116
116
|
key: string;
|