@adobe/spacecat-shared-data-access 3.35.0 → 3.36.1

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.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.36.0...@adobe/spacecat-shared-data-access-v3.36.1) (2026-04-01)
2
+
3
+ ### Bug Fixes
4
+
5
+ * add isCodeChangeAvailable and patchContent to form accessibility schema ([#1373](https://github.com/adobe/spacecat-shared/issues/1373)) ([065bf56](https://github.com/adobe/spacecat-shared/commit/065bf561ba83f13d4c377f5ab4d7441ec0c15360))
6
+
7
+ ## [@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)
8
+
9
+ ### Features
10
+
11
+ * 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))
12
+
1
13
  ## [@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)
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.35.0",
3
+ "version": "3.36.1",
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 {
@@ -246,6 +246,8 @@ export const DATA_SCHEMAS = {
246
246
  }).unknown(true),
247
247
  ).required(),
248
248
  jiraLink: Joi.string().uri().allow(null).optional(),
249
+ isCodeChangeAvailable: Joi.boolean().optional(),
250
+ patchContent: Joi.string().optional(),
249
251
  aggregationKey: Joi.string().optional(),
250
252
  }).unknown(true),
251
253
  projections: {