@pagelines/sdk 1.0.759 → 1.0.760
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.js +18 -4
- package/dist/AgentProvider.js.map +1 -1
- package/dist/AgentWrap.js +2 -2
- package/dist/AgentWrap.js.map +1 -1
- package/dist/agent/AgentController.d.ts +2 -0
- package/dist/agent/ui/AgentChat.vue.d.ts +4 -0
- package/dist/agent/ui/AgentProvider.vue.d.ts +4 -0
- package/dist/agent/ui/ElCreateAgent.vue.d.ts +6 -0
- package/dist/agent/voice/voice-session-client.d.ts +6 -1
- package/dist/agent.js +9 -14
- package/dist/agent.js.map +1 -1
- package/dist/contract.js +1698 -1680
- package/dist/contract.js.map +1 -1
- package/dist/demo/index.d.ts +3 -0
- package/dist/sdkClient.d.ts +9 -0
- package/dist/widget/composables/useWidgetState.d.ts +9 -0
- package/package.json +1 -1
package/dist/demo/index.d.ts
CHANGED
|
@@ -86,6 +86,9 @@ export declare function getDemoAgentByHandle(handle: string): Partial<{
|
|
|
86
86
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
|
87
87
|
automationPrimaryChannel?: string | undefined;
|
|
88
88
|
heartbeatEnabled?: boolean | undefined;
|
|
89
|
+
heartbeatBriefingTime?: string | undefined;
|
|
90
|
+
heartbeatCheckinTime?: string | undefined;
|
|
91
|
+
heartbeatCloseoutTime?: string | undefined;
|
|
89
92
|
onboardedAt?: string | null | undefined;
|
|
90
93
|
org?: {
|
|
91
94
|
orgId: string;
|
package/dist/sdkClient.d.ts
CHANGED
|
@@ -201,6 +201,9 @@ export declare class PageLinesSDK extends SettingsObject<PageLinesSDKSettings> {
|
|
|
201
201
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
|
202
202
|
automationPrimaryChannel?: string | undefined;
|
|
203
203
|
heartbeatEnabled?: boolean | undefined;
|
|
204
|
+
heartbeatBriefingTime?: string | undefined;
|
|
205
|
+
heartbeatCheckinTime?: string | undefined;
|
|
206
|
+
heartbeatCloseoutTime?: string | undefined;
|
|
204
207
|
onboardedAt?: string | null | undefined;
|
|
205
208
|
org?: {
|
|
206
209
|
orgId: string;
|
|
@@ -427,6 +430,9 @@ export declare class PageLinesSDK extends SettingsObject<PageLinesSDKSettings> {
|
|
|
427
430
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
|
428
431
|
automationPrimaryChannel?: string | undefined;
|
|
429
432
|
heartbeatEnabled?: boolean | undefined;
|
|
433
|
+
heartbeatBriefingTime?: string | undefined;
|
|
434
|
+
heartbeatCheckinTime?: string | undefined;
|
|
435
|
+
heartbeatCloseoutTime?: string | undefined;
|
|
430
436
|
onboardedAt?: string | null | undefined;
|
|
431
437
|
org?: {
|
|
432
438
|
orgId: string;
|
|
@@ -551,6 +557,9 @@ export declare class PageLinesSDK extends SettingsObject<PageLinesSDKSettings> {
|
|
|
551
557
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
|
552
558
|
automationPrimaryChannel?: string | undefined;
|
|
553
559
|
heartbeatEnabled?: boolean | undefined;
|
|
560
|
+
heartbeatBriefingTime?: string | undefined;
|
|
561
|
+
heartbeatCheckinTime?: string | undefined;
|
|
562
|
+
heartbeatCloseoutTime?: string | undefined;
|
|
554
563
|
onboardedAt?: string | null | undefined;
|
|
555
564
|
org?: {
|
|
556
565
|
orgId: string;
|
|
@@ -81,6 +81,9 @@ export declare function useWidgetState(props: {
|
|
|
81
81
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
|
82
82
|
automationPrimaryChannel?: string | undefined;
|
|
83
83
|
heartbeatEnabled?: boolean | undefined;
|
|
84
|
+
heartbeatBriefingTime?: string | undefined;
|
|
85
|
+
heartbeatCheckinTime?: string | undefined;
|
|
86
|
+
heartbeatCloseoutTime?: string | undefined;
|
|
84
87
|
onboardedAt?: string | null | undefined;
|
|
85
88
|
org?: {
|
|
86
89
|
orgId: string;
|
|
@@ -213,6 +216,9 @@ export declare function useWidgetState(props: {
|
|
|
213
216
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
|
214
217
|
automationPrimaryChannel?: string | undefined;
|
|
215
218
|
heartbeatEnabled?: boolean | undefined;
|
|
219
|
+
heartbeatBriefingTime?: string | undefined;
|
|
220
|
+
heartbeatCheckinTime?: string | undefined;
|
|
221
|
+
heartbeatCloseoutTime?: string | undefined;
|
|
216
222
|
onboardedAt?: string | null | undefined;
|
|
217
223
|
org?: {
|
|
218
224
|
orgId: string;
|
|
@@ -345,6 +351,9 @@ export declare function useWidgetState(props: {
|
|
|
345
351
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
|
346
352
|
automationPrimaryChannel?: string | undefined;
|
|
347
353
|
heartbeatEnabled?: boolean | undefined;
|
|
354
|
+
heartbeatBriefingTime?: string | undefined;
|
|
355
|
+
heartbeatCheckinTime?: string | undefined;
|
|
356
|
+
heartbeatCloseoutTime?: string | undefined;
|
|
348
357
|
onboardedAt?: string | null | undefined;
|
|
349
358
|
org?: {
|
|
350
359
|
orgId: string;
|