@joeybuilt/plexo-sdk 0.2.0 → 0.2.1
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/connect/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/connect/index.d.ts
CHANGED
|
@@ -101,6 +101,12 @@ interface AiCompleteOptions {
|
|
|
101
101
|
interface ChatOptions {
|
|
102
102
|
message: string;
|
|
103
103
|
sessionId?: string;
|
|
104
|
+
/** Optional channel ref for cross-channel session continuity. */
|
|
105
|
+
channelRef?: {
|
|
106
|
+
channel: string;
|
|
107
|
+
channelId: string;
|
|
108
|
+
chatId: string;
|
|
109
|
+
};
|
|
104
110
|
sessionContext?: {
|
|
105
111
|
activeView?: {
|
|
106
112
|
type: string;
|