@usepanacea/client 0.1.5 → 0.1.6

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/dist/index.d.cts CHANGED
@@ -28,6 +28,8 @@ interface Turn {
28
28
  sources?: Source[];
29
29
  flaggedForReview?: boolean;
30
30
  reaction?: "helpful" | "unhelpful" | null;
31
+ /** ISO timestamp when this turn was created */
32
+ timestamp?: string;
31
33
  /** True when this answer triggered an auto-escalation */
32
34
  escalated?: boolean;
33
35
  /** True when this message came from a live human agent */
package/dist/index.d.ts CHANGED
@@ -28,6 +28,8 @@ interface Turn {
28
28
  sources?: Source[];
29
29
  flaggedForReview?: boolean;
30
30
  reaction?: "helpful" | "unhelpful" | null;
31
+ /** ISO timestamp when this turn was created */
32
+ timestamp?: string;
31
33
  /** True when this answer triggered an auto-escalation */
32
34
  escalated?: boolean;
33
35
  /** True when this message came from a live human agent */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usepanacea/client",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Framework-agnostic API client for Panacea — shared by widget and React packages",