@naniteninja/dashboard-components-lib 2.1.91 → 2.1.92
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/index.d.ts
CHANGED
|
@@ -131,7 +131,8 @@ declare enum AutoDelegationEventTypes {
|
|
|
131
131
|
declare enum AutoDelegationEventValue {
|
|
132
132
|
CountdownCompleted = "countdown-completed",
|
|
133
133
|
RequestRejected = "request-rejected",
|
|
134
|
-
RequestAccepted = "request-accepted"
|
|
134
|
+
RequestAccepted = "request-accepted",
|
|
135
|
+
RequestAcceped = "request-accepted"
|
|
135
136
|
}
|
|
136
137
|
|
|
137
138
|
declare enum CalendarAccountEnum {
|
|
@@ -899,8 +900,18 @@ interface ProgressFacts {
|
|
|
899
900
|
interface IProspectData {
|
|
900
901
|
/** Full visible message thread for this prospect chat. */
|
|
901
902
|
conversation: IMessage[];
|
|
903
|
+
/**
|
|
904
|
+
* Compatibility alias used by older app builds that normalized wire data to
|
|
905
|
+
* `messages` instead of `conversation`.
|
|
906
|
+
*/
|
|
907
|
+
messages?: IMessage[];
|
|
902
908
|
/** Prospect document id (Mongo ObjectId as string). */
|
|
903
909
|
prospect: string;
|
|
910
|
+
/**
|
|
911
|
+
* Compatibility alias used by older app builds that normalized wire data to
|
|
912
|
+
* `prospectId` instead of `prospect`.
|
|
913
|
+
*/
|
|
914
|
+
prospectId?: string;
|
|
904
915
|
/** Prospect age in years when provided by the server builder. */
|
|
905
916
|
prospectAge?: number;
|
|
906
917
|
/** Current matcher pipeline status for this conversation. */
|
|
@@ -909,6 +920,11 @@ interface IProspectData {
|
|
|
909
920
|
prospectResponseTime: string;
|
|
910
921
|
/** LLM-generated reply suggestions shown in the chat UI. */
|
|
911
922
|
suggestions: IChatSuggestion[];
|
|
923
|
+
/**
|
|
924
|
+
* Compatibility alias used by older app builds that normalized wire data to
|
|
925
|
+
* `chatSuggestions` instead of `suggestions`.
|
|
926
|
+
*/
|
|
927
|
+
chatSuggestions?: IChatSuggestion[];
|
|
912
928
|
/** Confirmed calendar events linked to this prospect. */
|
|
913
929
|
schedules: ISchedulerEvent[];
|
|
914
930
|
/** Suggested calendar slots awaiting confirmation. */
|