@adobe/helix-config-storage 2.2.3 → 2.2.5
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 +14 -0
- package/package.json +1 -1
- package/src/schemas/sidekick.schema.json +14 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.2.5](https://github.com/adobe/helix-config-storage/compare/v2.2.4...v2.2.5) (2025-05-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add missing properties to the sidekick schema ([#122](https://github.com/adobe/helix-config-storage/issues/122)) ([2df49fa](https://github.com/adobe/helix-config-storage/commit/2df49fa110b7148a267e81a8c9e4318d86cb20b1))
|
|
7
|
+
|
|
8
|
+
## [2.2.4](https://github.com/adobe/helix-config-storage/compare/v2.2.3...v2.2.4) (2025-05-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* relax sidekick schema ([#121](https://github.com/adobe/helix-config-storage/issues/121)) ([f0a18c7](https://github.com/adobe/helix-config-storage/commit/f0a18c758e4f1f6ff05105ef018597d3d0768e9f))
|
|
14
|
+
|
|
1
15
|
## [2.2.3](https://github.com/adobe/helix-config-storage/compare/v2.2.2...v2.2.3) (2025-05-05)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"isBadge"
|
|
162
162
|
]
|
|
163
163
|
},
|
|
164
|
-
"additionalProperties":
|
|
164
|
+
"additionalProperties": true
|
|
165
165
|
},
|
|
166
166
|
"sidekickSpecialView": {
|
|
167
167
|
"type": "object",
|
|
@@ -177,6 +177,10 @@
|
|
|
177
177
|
"/foo/**.json"
|
|
178
178
|
]
|
|
179
179
|
},
|
|
180
|
+
"title": {
|
|
181
|
+
"type": "string",
|
|
182
|
+
"description": "Title of the special view"
|
|
183
|
+
},
|
|
180
184
|
"viewer": {
|
|
181
185
|
"type": "string",
|
|
182
186
|
"description": "The URL of the special view. The resource path will be passed to it via 'path' parameter",
|
|
@@ -190,7 +194,7 @@
|
|
|
190
194
|
"path",
|
|
191
195
|
"viewer"
|
|
192
196
|
],
|
|
193
|
-
"additionalProperties":
|
|
197
|
+
"additionalProperties": true
|
|
194
198
|
}
|
|
195
199
|
},
|
|
196
200
|
"title": "Sidekick Config",
|
|
@@ -239,7 +243,14 @@
|
|
|
239
243
|
"items": {
|
|
240
244
|
"$ref": "#/definitions/sidekickSpecialView"
|
|
241
245
|
}
|
|
246
|
+
},
|
|
247
|
+
"trustedHosts": {
|
|
248
|
+
"type": "array",
|
|
249
|
+
"items": {
|
|
250
|
+
"type": "string"
|
|
251
|
+
},
|
|
252
|
+
"description": "Additional hosts that are trusted to use the sidekick authentication"
|
|
242
253
|
}
|
|
243
254
|
},
|
|
244
255
|
"additionalProperties": false
|
|
245
|
-
}
|
|
256
|
+
}
|