@adobe/spacecat-shared-data-access 3.34.0 → 3.36.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.36.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.35.0...@adobe/spacecat-shared-data-access-v3.36.0) (2026-04-01)
2
+
3
+ ### Features
4
+
5
+ * add PLG tier to entitlement model and bump mysticat types ([#1487](https://github.com/adobe/spacecat-shared/issues/1487)) ([7f9c6fc](https://github.com/adobe/spacecat-shared/commit/7f9c6fcb6d3672269081176ebf643151fb512e99))
6
+
7
+ ## [@adobe/spacecat-shared-data-access-v3.35.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.34.0...@adobe/spacecat-shared-data-access-v3.35.0) (2026-03-31)
8
+
9
+ ### Features
10
+
11
+ * redirectsQueued step renamed ([#1489](https://github.com/adobe/spacecat-shared/issues/1489)) ([d4eb54f](https://github.com/adobe/spacecat-shared/commit/d4eb54ff4c7636b904f41881cbb0c0ef6a2a3da4))
12
+
1
13
  ## [@adobe/spacecat-shared-data-access-v3.34.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.33.1...@adobe/spacecat-shared-data-access-v3.34.0) (2026-03-31)
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.34.0",
3
+ "version": "3.36.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -25,6 +25,7 @@ class Entitlement extends BaseModel {
25
25
  static TIERS = {
26
26
  FREE_TRIAL: 'FREE_TRIAL',
27
27
  PAID: 'PAID',
28
+ PLG: 'PLG',
28
29
  };
29
30
 
30
31
  static PRODUCT_CODES = {
@@ -15,7 +15,7 @@ import type {
15
15
  } from '../index';
16
16
 
17
17
  export type EntitlementStatus = 'ACTIVE' | 'SUSPENDED' | 'ENDED';
18
- export type EntitlementTier = 'FREE_TRIAL' | 'PAID';
18
+ export type EntitlementTier = 'FREE_TRIAL' | 'PAID' | 'PLG';
19
19
  export type EntitlementProductCode = 'LLMO' | 'ASO' | 'ACO';
20
20
 
21
21
  export interface Entitlement extends BaseModel {
@@ -66,7 +66,7 @@ const schema = new SchemaBuilder(PlgOnboarding, PlgOnboardingCollection)
66
66
  siteResolved: { type: 'boolean' },
67
67
  configUpdated: { type: 'boolean' },
68
68
  auditsEnabled: { type: 'boolean' },
69
- redirectsQueued: { type: 'boolean' },
69
+ deliveryConfigQueued: { type: 'boolean' },
70
70
  entitlementCreated: { type: 'boolean' },
71
71
  },
72
72
  })