@hipnation-truth/sdk 0.23.0 → 0.23.2

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/react.d.ts CHANGED
@@ -690,6 +690,14 @@ interface ConversationMessage {
690
690
  mms: boolean;
691
691
  mmsUrl: string | null;
692
692
  messageStatus: string | null;
693
+ /**
694
+ * True while an outbound SMS is the optimistic local row inserted by the
695
+ * Truth `sendMessage` path and not yet reconciled by the Dialpad webhook
696
+ * (Truth #100). Clients gate a "sending" affordance on THIS flag — not on
697
+ * `messageStatus === "optimistic"`, a value minted nowhere. Always `false`
698
+ * for calls and reconciled rows.
699
+ */
700
+ optimistic: boolean;
693
701
  occurredAt: string;
694
702
  conversationId: string | null;
695
703
  patientId: string | null;