@adobe/spacecat-shared-data-access 4.5.0 → 4.6.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,9 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v4.6.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.5.0...@adobe/spacecat-shared-data-access-v4.6.0) (2026-07-12)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* added non prod domain in plg onboarding steps ([#1750](https://github.com/adobe/spacecat-shared/issues/1750)) ([3f56508](https://github.com/adobe/spacecat-shared/commit/3f56508a47ffd4b92584c424fcb7876bddd48838))
|
|
6
|
+
|
|
1
7
|
## [@adobe/spacecat-shared-data-access-v4.5.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.4.0...@adobe/spacecat-shared-data-access-v4.5.0) (2026-07-10)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -69,6 +69,7 @@ const schema = new SchemaBuilder(PlgOnboarding, PlgOnboardingCollection)
|
|
|
69
69
|
entitlementFailed: { type: 'boolean' },
|
|
70
70
|
orgResolutionFailed: { type: 'boolean' },
|
|
71
71
|
preOnboarded: { type: 'boolean' },
|
|
72
|
+
nonProdCheckBypassed: { type: 'boolean' },
|
|
72
73
|
},
|
|
73
74
|
})
|
|
74
75
|
.addAttribute('error', {
|
|
@@ -477,9 +477,7 @@ export const configSchema = Joi.object({
|
|
|
477
477
|
storeCode: Joi.string().required(),
|
|
478
478
|
storeViewCode: Joi.string().required(),
|
|
479
479
|
hostName: Joi.string().optional(),
|
|
480
|
-
|
|
481
|
-
magentoAPIKey: Joi.string().optional(),
|
|
482
|
-
}),
|
|
480
|
+
}).options({ stripUnknown: true }),
|
|
483
481
|
).optional(),
|
|
484
482
|
contentAiConfig: Joi.object({
|
|
485
483
|
index: Joi.string().optional(),
|