@adobe/spacecat-shared-data-access 3.18.0 → 3.19.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-v3.19.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.18.0...@adobe/spacecat-shared-data-access-v3.19.0) (2026-03-13)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **data-access:** add PRE_ONBOARDING status to PlgOnboarding entity ([#1433](https://github.com/adobe/spacecat-shared/issues/1433)) ([69b35d7](https://github.com/adobe/spacecat-shared/commit/69b35d77c5f0b2c67ed153227f60198527e530d4))
|
|
6
|
+
|
|
1
7
|
## [@adobe/spacecat-shared-data-access-v3.18.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.17.0...@adobe/spacecat-shared-data-access-v3.18.0) (2026-03-12)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -27,6 +27,7 @@ class PlgOnboarding extends BaseModel {
|
|
|
27
27
|
static DOMAIN_PATTERN = /^[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/;
|
|
28
28
|
|
|
29
29
|
static STATUSES = {
|
|
30
|
+
PRE_ONBOARDING: 'PRE_ONBOARDING',
|
|
30
31
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
31
32
|
ONBOARDED: 'ONBOARDED',
|
|
32
33
|
ERROR: 'ERROR',
|
package/src/models/site/index.js
CHANGED
|
@@ -18,3 +18,16 @@ export {
|
|
|
18
18
|
Site,
|
|
19
19
|
SiteCollection,
|
|
20
20
|
};
|
|
21
|
+
|
|
22
|
+
export {
|
|
23
|
+
Config,
|
|
24
|
+
configSchema,
|
|
25
|
+
validateConfiguration,
|
|
26
|
+
extractWellKnownTags,
|
|
27
|
+
IMPORT_TYPES,
|
|
28
|
+
IMPORT_DESTINATIONS,
|
|
29
|
+
IMPORT_SOURCES,
|
|
30
|
+
IMPORT_TYPE_SCHEMAS,
|
|
31
|
+
DEFAULT_IMPORT_CONFIGS,
|
|
32
|
+
DEFAULT_CONFIG,
|
|
33
|
+
} from './config.js';
|