@pagelines/sdk 1.0.504 → 1.0.506
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/AgentProvider.vue_vue_type_script_setup_true_lang.js.map +1 -1
- package/dist/AgentWrap.vue_vue_type_script_setup_true_lang.js +400 -374
- package/dist/AgentWrap.vue_vue_type_script_setup_true_lang.js.map +1 -1
- package/dist/agent/AgentController.d.ts +1 -0
- package/dist/agent/schema.d.ts +2 -2
- package/package.json +1 -1
|
@@ -80,6 +80,7 @@ export declare class AgentChatController extends SettingsObject<AgentChatControl
|
|
|
80
80
|
private updateState;
|
|
81
81
|
private resetState;
|
|
82
82
|
private setupModeWatcher;
|
|
83
|
+
private setupAvailabilityWatcher;
|
|
83
84
|
/**
|
|
84
85
|
* Hard error path. Resets the connection and surfaces an inline bubble so
|
|
85
86
|
* the user actually sees what happened — `connectionStatus: 'error'`
|
package/dist/agent/schema.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ export interface ChatAttachment {
|
|
|
10
10
|
export interface ChatMessageIssue {
|
|
11
11
|
code: string;
|
|
12
12
|
bucket: 'account' | 'error';
|
|
13
|
-
actionLabel
|
|
14
|
-
actionUrl
|
|
13
|
+
actionLabel?: string;
|
|
14
|
+
actionUrl?: string;
|
|
15
15
|
help?: string;
|
|
16
16
|
}
|
|
17
17
|
export interface ChatMessage {
|