@adonoustech/bacon-core 6.4.0 → 6.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adonoustech/bacon-core",
3
- "version": "6.4.0",
3
+ "version": "6.6.1",
4
4
  "scripts": {
5
5
  "build:cjs": "tsc -p tsconfig.cjs.json",
6
6
  "build:es": "tsc -p tsconfig.es.json",
@@ -39,5 +39,5 @@
39
39
  "bugs": {
40
40
  "url": "https://github.com/AdonousTech/bacon-core/issues"
41
41
  },
42
- "gitHead": "11a9a09187eef1560251fa8b42fe9c97aa5510fc"
42
+ "gitHead": "2164cb7a9378f8bb9654805051de4739099ef1ec"
43
43
  }
@@ -96,6 +96,20 @@ export interface IAdminClientDetailIntakeStatus {
96
96
  lastModified?: string;
97
97
  }
98
98
 
99
+ /**
100
+ * Admin note for client detail view
101
+ */
102
+ export interface IAdminClientNote {
103
+ /** Unique note identifier */
104
+ id: string;
105
+ /** Note text content */
106
+ text: string;
107
+ /** ISO timestamp when note was created */
108
+ createdAt: string;
109
+ /** Name of user who created the note */
110
+ createdBy: string;
111
+ }
112
+
99
113
  /**
100
114
  * Structured detail view model for individual client
101
115
  * Used in the client detail panel/modal
@@ -152,4 +166,7 @@ export interface IAdminClientDetail {
152
166
 
153
167
  /** Intake form submission status */
154
168
  intakeStatus: IAdminClientDetailIntakeStatus;
169
+
170
+ /** Admin notes for this client */
171
+ notes: IAdminClientNote[];
155
172
  }