@adobe/spacecat-shared-data-access 4.15.3 → 4.16.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.16.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.15.3...@adobe/spacecat-shared-data-access-v4.16.0) (2026-07-31)
2
+
3
+ ### Features
4
+
5
+ * **data-access:** expose deployedAt on FixEntity (SITES-47997/48823) ([#1857](https://github.com/adobe/spacecat-shared/issues/1857)) ([512d991](https://github.com/adobe/spacecat-shared/commit/512d991aaee98cad2387807193852937cede6ddd))
6
+
1
7
  ## [@adobe/spacecat-shared-data-access-v4.15.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.15.2...@adobe/spacecat-shared-data-access-v4.15.3) (2026-07-29)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "4.15.3",
3
+ "version": "4.16.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -33,6 +33,14 @@ const schema = new SchemaBuilder(FixEntity, FixEntityCollection)
33
33
  type: 'string',
34
34
  validate: (value) => !value || isIsoDate(value),
35
35
  })
36
+ // SITES-47997/48823 — the DEPLOYED moment (written/confirmed to author),
37
+ // distinct from executedAt (apply executed) and publishedAt (live). Maps to
38
+ // the fix_entities.deployed_at column; stamped by mystique on the -> DEPLOYED
39
+ // transition. Optional (null for rows created before the column).
40
+ .addAttribute('deployedAt', {
41
+ type: 'string',
42
+ validate: (value) => !value || isIsoDate(value),
43
+ })
36
44
  .addAttribute('publishedAt', {
37
45
  type: 'string',
38
46
  validate: (value) => !value || isIsoDate(value),
@@ -20,6 +20,8 @@ export interface FixEntity extends BaseModel {
20
20
  setChangeDetails(value: object): this;
21
21
  getExecutedAt(): string;
22
22
  setExecutedAt(value: string): this;
23
+ getDeployedAt(): string;
24
+ setDeployedAt(value: string): this;
23
25
  getExecutedBy(): string;
24
26
  setExecutedBy(value: string): this;
25
27
  getOpportunity(): Promise<Opportunity>;