@adobe/spacecat-shared-data-access 3.56.0 → 3.57.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,15 @@
1
+ ## [@adobe/spacecat-shared-data-access-v3.57.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.56.1...@adobe/spacecat-shared-data-access-v3.57.0) (2026-05-05)
2
+
3
+ ### Features
4
+
5
+ * added new status in PLG onboarding flow ([#1568](https://github.com/adobe/spacecat-shared/issues/1568)) ([e1d2be5](https://github.com/adobe/spacecat-shared/commit/e1d2be5242378ca8adb14a347dc46faf028801d7))
6
+
7
+ ## [@adobe/spacecat-shared-data-access-v3.56.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.56.0...@adobe/spacecat-shared-data-access-v3.56.1) (2026-05-04)
8
+
9
+ ### Bug Fixes
10
+
11
+ * **data-access:** replace hard-coded IT hook timeout with shared constant ([#1579](https://github.com/adobe/spacecat-shared/issues/1579)) ([4fbc6e0](https://github.com/adobe/spacecat-shared/commit/4fbc6e0ce30e59525bd9c9136a5cf2215c9f186a)), closes [#1573](https://github.com/adobe/spacecat-shared/issues/1573)
12
+
1
13
  ## [@adobe/spacecat-shared-data-access-v3.56.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.55.1...@adobe/spacecat-shared-data-access-v3.56.0) (2026-05-04)
2
14
 
3
15
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "3.56.0",
3
+ "version": "3.57.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -34,11 +34,16 @@ class PlgOnboarding extends BaseModel {
34
34
  WAITING_FOR_IP_ALLOWLISTING: 'WAITING_FOR_IP_ALLOWLISTING',
35
35
  WAITLISTED: 'WAITLISTED',
36
36
  INACTIVE: 'INACTIVE',
37
+ REJECTED: 'REJECTED',
38
+ OUTDATED: 'OUTDATED',
37
39
  };
38
40
 
39
41
  static REVIEW_DECISIONS = {
40
42
  BYPASSED: 'BYPASSED',
41
43
  UPHELD: 'UPHELD',
44
+ CLOSED: 'CLOSED',
45
+ REOPENED: 'REOPENED',
46
+ OFFBOARDED: 'OFFBOARDED',
42
47
  };
43
48
  }
44
49
 
@@ -58,10 +58,16 @@ const schema = new SchemaBuilder(PlgOnboarding, PlgOnboardingCollection)
58
58
  rumVerified: { type: 'boolean' },
59
59
  siteCreated: { type: 'boolean' },
60
60
  siteResolved: { type: 'boolean' },
61
+ siteOrgReassigned: { type: 'boolean' },
62
+ authorUrlResolved: { type: 'boolean' },
63
+ hlxConfigSet: { type: 'boolean' },
64
+ codeConfigResolved: { type: 'boolean' },
61
65
  configUpdated: { type: 'boolean' },
62
66
  auditsEnabled: { type: 'boolean' },
63
67
  deliveryConfigQueued: { type: 'boolean' },
64
68
  entitlementCreated: { type: 'boolean' },
69
+ entitlementFailed: { type: 'boolean' },
70
+ orgResolutionFailed: { type: 'boolean' },
65
71
  },
66
72
  })
67
73
  .addAttribute('error', {
@@ -76,6 +82,11 @@ const schema = new SchemaBuilder(PlgOnboarding, PlgOnboardingCollection)
76
82
  userAgent: { type: 'string' },
77
83
  },
78
84
  })
85
+ .addAttribute('createdBy', {
86
+ type: 'string',
87
+ required: false,
88
+ default: 'system',
89
+ })
79
90
  .addAttribute('waitlistReason', {
80
91
  type: 'string',
81
92
  required: false,