@adobe/spacecat-shared-data-access 3.50.1 → 3.51.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 +6 -0
- package/README.md +1 -0
- package/package.json +1 -1
- package/src/models/site/index.d.ts +1 -0
- package/src/models/site/site.schema.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v3.51.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.50.1...@adobe/spacecat-shared-data-access-v3.51.0) (2026-04-10)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* add contentSourcePath to deliveryConfig schema ([#1520](https://github.com/adobe/spacecat-shared/issues/1520)) ([80341f3](https://github.com/adobe/spacecat-shared/commit/80341f39e0eb34ffca0622a38824c5a33614c96e))
|
|
6
|
+
|
|
1
7
|
## [@adobe/spacecat-shared-data-access-v3.50.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.50.0...@adobe/spacecat-shared-data-access-v3.50.1) (2026-04-10)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -170,6 +170,7 @@ The `deliveryConfig` object on a Site stores delivery infrastructure details. It
|
|
|
170
170
|
| `tenantId` | string | Cloud Manager tenant identifier (from `/program/{programId}` response) |
|
|
171
171
|
| `ipAllowlistExists` | boolean | Whether the CM program has real IP allowlists configured (excludes default `0.0.0.0/32` entries) |
|
|
172
172
|
| `preferContentApi` | boolean | Whether to prefer the Content API for content retrieval |
|
|
173
|
+
| `contentSourcePath` | string | AEM content root path for a site. Used to disambiguate multiple sites that share the same Cloud Manager program and environment. Corresponds to `/content/<site-name>` in the AEM repository. |
|
|
173
174
|
|
|
174
175
|
## Architecture
|
|
175
176
|
|
package/package.json
CHANGED
|
@@ -117,6 +117,7 @@ const schema = new SchemaBuilder(Site, SiteCollection)
|
|
|
117
117
|
tenantId: { type: 'string' },
|
|
118
118
|
ipAllowlistExists: { type: 'boolean' },
|
|
119
119
|
imsOrgId: { type: 'string' },
|
|
120
|
+
contentSourcePath: { type: 'string' },
|
|
120
121
|
},
|
|
121
122
|
})
|
|
122
123
|
.addAttribute('hlxConfig', {
|