@mindstudio-ai/remy 0.1.271 → 0.1.272
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.
|
@@ -105,6 +105,11 @@ method to branch web vs phone behavior (what to prefetch, how to phrase context)
|
|
|
105
105
|
`session.sip.fromNumber` as context only, never identity: caller ID is spoofable, so don't gate
|
|
106
106
|
data or roles on it — in-call verification is the auth rail.
|
|
107
107
|
|
|
108
|
+
Ordinary web method calls carry the same context (`session.channel === 'web'` with `visitorId`),
|
|
109
|
+
so correlating a browser's web activity with its voice calls can key on `session.visitorId` on
|
|
110
|
+
both sides — one browser, one visitor id, web and voice alike. `session.voiceSessionId` remains
|
|
111
|
+
the per-call key when you need to distinguish individual calls.
|
|
112
|
+
|
|
108
113
|
### Client tools: actions that happen on screen (`target: "client"`)
|
|
109
114
|
|
|
110
115
|
A tool whose effect belongs in the browser — open the verification sheet, navigate to a page,
|