@adobe/helix-config-storage 2.4.0 → 2.5.0

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
+ # [2.5.0](https://github.com/adobe/helix-config-storage/compare/v2.4.0...v2.5.0) (2025-07-10)
2
+
3
+
4
+ ### Features
5
+
6
+ * add envId to managed prod cdn config ([#151](https://github.com/adobe/helix-config-storage/issues/151)) ([0c52522](https://github.com/adobe/helix-config-storage/commit/0c52522a083d70e5cb1c3559463f3b13cf6640e8))
7
+
1
8
  # [2.4.0](https://github.com/adobe/helix-config-storage/compare/v2.3.0...v2.4.0) (2025-07-07)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config-storage",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "description": "Helix Config Storage",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -36,7 +36,7 @@
36
36
  "reporter-options": "configFile=.mocha-multi.json"
37
37
  },
38
38
  "devDependencies": {
39
- "@adobe/eslint-config-helix": "3.0.6",
39
+ "@adobe/eslint-config-helix": "3.0.8",
40
40
  "@eslint/config-helpers": "0.3.0",
41
41
  "@semantic-release/changelog": "6.0.3",
42
42
  "@semantic-release/git": "10.0.1",
@@ -13,6 +13,10 @@
13
13
  "description": "production host",
14
14
  "type": "string"
15
15
  },
16
+ "envId": {
17
+ "description": "environment id",
18
+ "type": "string"
19
+ },
16
20
  "route": {
17
21
  "description": "Routes on the CDN that are rendered with Franklin",
18
22
  "type": "array",
@@ -208,6 +208,10 @@ export interface ManagedCDNConfig {
208
208
  * production host
209
209
  */
210
210
  host: string;
211
+ /**
212
+ * environment id
213
+ */
214
+ envId?: string;
211
215
  /**
212
216
  * Routes on the CDN that are rendered with Franklin
213
217
  */
@@ -216,6 +216,10 @@ export interface ManagedCDNConfig {
216
216
  * production host
217
217
  */
218
218
  host: string;
219
+ /**
220
+ * environment id
221
+ */
222
+ envId?: string;
219
223
  /**
220
224
  * Routes on the CDN that are rendered with Franklin
221
225
  */