hvp-shared 13.6.0 → 13.7.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.
@@ -105,6 +105,18 @@ export interface DiagnosticResult {
105
105
  * like "AGENDO XYZ 16 MAYO" in the description. Null if missing from API.
106
106
  */
107
107
  eventCreatedAt: string | null;
108
+ /**
109
+ * Raw event description as it appears in Google Calendar — unprocessed,
110
+ * line-break-preserved. Used by the dashboard's detail view to show what
111
+ * recepción actually typed (vs. the inferred fields). Null if empty.
112
+ */
113
+ rawDescription: string | null;
114
+ /**
115
+ * Raw GCal colorId — numeric string like "11" (Tomato) or "9" (Blueberry).
116
+ * Used by the dashboard's detail view to disambiguate visually similar
117
+ * tones. Null if event uses the default color.
118
+ */
119
+ colorId: string | null;
108
120
  }
109
121
  /**
110
122
  * Excluded event — does not have a score.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hvp-shared",
3
- "version": "13.6.0",
3
+ "version": "13.7.0",
4
4
  "description": "Shared types and utilities for HVP backend and frontend",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",