@remit/ui 0.0.127 → 0.0.128

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": "@remit/ui",
3
- "version": "0.0.127",
3
+ "version": "0.0.128",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src"
@@ -98,6 +98,8 @@ export interface EventSuggestion {
98
98
  threadId: string;
99
99
  threadSubject: string;
100
100
  sender: string;
101
+ /** The address a rule about this sender is written against. */
102
+ senderAddress: string;
101
103
  /** 0–1. The component derives its own wording; the seam carries the value. */
102
104
  confidence: number;
103
105
  /** What the parse could not settle, empty when nothing. */
@@ -15,6 +15,7 @@ const suggestion: EventSuggestion = {
15
15
  threadId: "thr_airbnb",
16
16
  threadSubject: "Your reservation in Lisbon is confirmed",
17
17
  sender: "Airbnb",
18
+ senderAddress: "automated@airbnb.example",
18
19
  confidence: 0.94,
19
20
  ambiguity: "",
20
21
  suggestedCalendarId: "c5",
@@ -33,6 +33,7 @@ const base: EventSuggestion = {
33
33
  threadId: "thr_airbnb",
34
34
  threadSubject: "Your reservation in Lisbon is confirmed",
35
35
  sender: "Airbnb",
36
+ senderAddress: "automated@airbnb.example",
36
37
  confidence: 0.94,
37
38
  ambiguity: "",
38
39
  suggestedCalendarId: "c5",