@1interface/chat-core 0.2.1 → 0.2.3
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/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -570,6 +570,7 @@ export declare interface ClientConfig {
|
|
|
570
570
|
conversations: ConversationsConfig;
|
|
571
571
|
voice_agent: VoiceAgentConfig;
|
|
572
572
|
features?: string[];
|
|
573
|
+
backend_version?: string;
|
|
573
574
|
}
|
|
574
575
|
|
|
575
576
|
export declare interface ClientConfigResponse {
|
|
@@ -945,6 +946,7 @@ export declare interface StartConversationBody {
|
|
|
945
946
|
|
|
946
947
|
export declare interface StartConversationMetadata {
|
|
947
948
|
user_location?: UserLocation;
|
|
949
|
+
device_token?: string;
|
|
948
950
|
}
|
|
949
951
|
|
|
950
952
|
export declare const store: EnhancedStore< {
|
|
@@ -1117,6 +1119,7 @@ export declare interface StreamMessageParams {
|
|
|
1117
1119
|
message: string;
|
|
1118
1120
|
enableTts?: boolean;
|
|
1119
1121
|
debugMode?: boolean;
|
|
1122
|
+
body?: Record<string, unknown>;
|
|
1120
1123
|
}
|
|
1121
1124
|
|
|
1122
1125
|
export declare const THINKING_MESSAGES: {
|