@wildix/wda-stream-client 1.1.49 → 1.1.56

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.
@@ -1,7 +1,40 @@
1
1
  import { WdaStreamServiceException as __BaseException } from "./WdaStreamServiceException";
2
- import { CallAnalyticsCostRecordEvent, CallAnalyticsLiveCompleteEvent, CallAnalyticsLiveInterruptedEvent, CallAnalyticsLiveProgressEvent, CallAnalyticsLiveProgressEventFlow, CallAnalyticsLiveTranscriptionEvent, CallAnalyticsRecordEvent, CallAnalyticsTranscriptionRecordEvent, CallEventType, ChatAnalyticsLiveCompleteEvent, ChatAnalyticsLiveInterruptedEvent, ChatAnalyticsLiveProgressEvent, ChatAnalyticsLiveTranscriptionEvent, ChatAnalyticsManagerMissedEvent, ChatAnalyticsRecordEvent, ChatAnalyticsTranscriptionRecordEvent, ChatEventType, ConferenceAnalyticsLiveCompleteEvent, ConferenceAnalyticsLiveInterruptedEvent, ConferenceAnalyticsLiveJoinEvent, ConferenceAnalyticsLiveLeaveEvent, ConferenceAnalyticsLiveProgressEvent, ConferenceAnalyticsLiveTranscriptionEvent, ConferenceAnalyticsRecordEvent, ConferenceAnalyticsTranscriptionRecordEvent, ConferenceEventType, PresenceAnalyticsConferenceEvent, PresenceAnalyticsStatusEvent, PresenceAnalyticsTelephonyEvent, PresenceEventType, ServiceAnalyticsLiveCompleteEvent, ServiceAnalyticsLiveProgressEvent, ServiceCallAnalyticsLiveCompleteEvent, ServiceCallAnalyticsLiveProgressEvent, ServiceCallEventType, ServiceEventType, WebhookCallCompletedEvent, WebhookCallLiveCompletedEvent, WebhookCallLiveInterruptedEvent, WebhookCallLiveProgressEvent, WebhookCallLiveRecordPauseEvent, WebhookCallLiveRecordStartEvent, WebhookCallLiveRecordStopEvent, WebhookCallLiveRecordUnpauseEvent, WebhookCallLiveTranscriptionEvent, WebhookCallSummaryCompletedEvent, WebhookCallTranscriptionCompletedEvent, WebhookCallTranscriptionTextCompletedEvent, WebhookChatCompletedEvent, WebhookChatLiveCompletedEvent, WebhookChatLiveInterruptedEvent, WebhookChatLiveProgressEvent, WebhookChatManagerMissedEvent, WebhookChatSummaryCompletedEvent, WebhookConferenceCompletedEvent, WebhookConferenceLiveCompletedEvent, WebhookConferenceLiveInterruptedEvent, WebhookConferenceLiveJoinEvent, WebhookConferenceLiveLeaveEvent, WebhookConferenceLiveProgressEvent, WebhookConferenceLiveTranscriptionEvent, WebhookConferenceSummaryCompletedEvent, WebhookConferenceTranscriptionCompletedEvent, WebhookConferenceTranscriptionTextCompletedEvent, WebhookOutdatedCallEndEvent, WebhookOutdatedCallStartEvent, WebhookOutdatedCallUpdateEvent, WebhookPresenceConferenceEvent, WebhookPresenceTelephonyEvent, WebhookPresenceUserEvent, WebhookSmsStatusEvent, WebsocketAuthorizeBadRequestException, WebsocketAuthorizedEvent, WebsocketConversationsBroadcastEvent, WebsocketEvent, WebsocketPresenceBroadcastEvent, WebsocketSubscribeAction, WebsocketTopic, WebsocketUnsubscribeAction } from "./models_0";
2
+ import { CallAnalyticsCostRecordEvent, CallAnalyticsLiveCompleteEvent, CallAnalyticsLiveInterruptedEvent, CallAnalyticsLiveProgressEvent, CallAnalyticsLiveProgressEventFlow, CallAnalyticsLiveTranscriptionEvent, CallAnalyticsRecordEvent, CallAnalyticsTranscriptionRecordEvent, CallEventType, ChatAnalyticsLiveCompleteEvent, ChatAnalyticsLiveInterruptedEvent, ChatAnalyticsLiveProgressEvent, ChatAnalyticsLiveTranscriptionEvent, ChatAnalyticsManagerMissedEvent, ChatAnalyticsRecordEvent, ChatAnalyticsTranscriptionRecordEvent, ChatEventType, ConferenceAnalyticsLiveCompleteEvent, ConferenceAnalyticsLiveInterruptedEvent, ConferenceAnalyticsLiveJoinEvent, ConferenceAnalyticsLiveLeaveEvent, ConferenceAnalyticsLiveProgressEvent, ConferenceAnalyticsLiveTranscriptionEvent, ConferenceAnalyticsRecordEvent, ConferenceAnalyticsTranscriptionRecordEvent, ConferenceEventType, PresenceAnalyticsConferenceEvent, PresenceAnalyticsStatusEvent, PresenceAnalyticsTelephonyEvent, PresenceEventType, ServiceAgentsStatusAnalyticsRecordEvent, ServiceAnalyticsLiveCompleteEvent, ServiceAnalyticsLiveProgressEvent, ServiceCallAnalyticsLiveCompleteEvent, ServiceCallAnalyticsLiveProgressEvent, ServiceCallAnalyticsRecordEvent, ServiceCallEventType, ServiceEventType, WebhookCallCompletedEvent, WebhookCallLiveCompletedEvent, WebhookCallLiveInterruptedEvent, WebhookCallLiveProgressEvent, WebhookCallLiveRecordPauseEvent, WebhookCallLiveRecordStartEvent, WebhookCallLiveRecordStopEvent, WebhookCallLiveRecordUnpauseEvent, WebhookCallLiveTranscriptionEvent, WebhookCallSummaryCompletedEvent, WebhookCallTranscriptionCompletedEvent, WebhookCallTranscriptionTextCompletedEvent, WebhookChatCompletedEvent, WebhookChatLiveCompletedEvent, WebhookChatLiveInterruptedEvent, WebhookChatLiveProgressEvent, WebhookChatManagerMissedEvent, WebhookChatSummaryCompletedEvent, WebhookConferenceCompletedEvent, WebhookConferenceLiveCompletedEvent, WebhookConferenceLiveInterruptedEvent, WebhookConferenceLiveJoinEvent, WebhookConferenceLiveLeaveEvent, WebhookConferenceLiveProgressEvent, WebhookConferenceLiveTranscriptionEvent, WebhookConferenceSummaryCompletedEvent, WebhookConferenceTranscriptionCompletedEvent, WebhookConferenceTranscriptionTextCompletedEvent, WebhookOutdatedCallEndEvent, WebhookOutdatedCallStartEvent, WebhookOutdatedCallUpdateEvent, WebhookPresenceConferenceEvent, WebhookPresenceTelephonyEvent, WebhookPresenceUserEvent, WebhookSmsStatusEvent, WebsocketAuthorizeBadRequestException, WebsocketAuthorizedEvent, WebsocketConversationsBroadcastEvent, WebsocketEvent, WebsocketSubscribeAction, WebsocketTopic, WebsocketUnsubscribeAction } from "./models_0";
3
3
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
4
4
  import { DocumentType as __DocumentType } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface WebsocketPresenceData {
9
+ id?: string | undefined;
10
+ company?: string | undefined;
11
+ extension?: string | undefined;
12
+ status?: string | undefined;
13
+ telephony?: string | undefined;
14
+ conference?: string | undefined;
15
+ message?: string | undefined;
16
+ until?: string | undefined;
17
+ address?: string | undefined;
18
+ lng?: string | undefined;
19
+ lat?: string | undefined;
20
+ seen?: string | undefined;
21
+ }
22
+ /**
23
+ * @public
24
+ */
25
+ export interface WebsocketPresenceDataList {
26
+ member?: WebsocketPresenceData | undefined;
27
+ }
28
+ /**
29
+ * @public
30
+ */
31
+ export interface WebsocketPresenceBroadcastEvent {
32
+ event: WebsocketEvent;
33
+ topic: WebsocketTopic;
34
+ delta?: WebsocketPresenceData | undefined;
35
+ data?: WebsocketPresenceDataList | undefined;
36
+ meta?: __DocumentType | undefined;
37
+ }
5
38
  /**
6
39
  * @public
7
40
  */
@@ -130,15 +163,25 @@ export interface DescribeEventOutput {
130
163
  ServiceAnalyticsLiveProgressEvent?: ServiceAnalyticsLiveProgressEvent | undefined;
131
164
  ServiceAnalyticsLiveCompleteEvent?: ServiceAnalyticsLiveCompleteEvent | undefined;
132
165
  /**
133
- * Service call data shared by live events and record representation.
166
+ * Record representation of a service agent status update.
167
+ * @public
168
+ */
169
+ ServiceAgentsStatusAnalyticsRecordEvent?: ServiceAgentsStatusAnalyticsRecordEvent | undefined;
170
+ /**
171
+ * Base service call structure.
134
172
  * @public
135
173
  */
136
174
  ServiceCallAnalyticsLiveProgressEvent?: ServiceCallAnalyticsLiveProgressEvent | undefined;
137
175
  /**
138
- * Service call data shared by live events and record representation.
176
+ * Base service call structure.
139
177
  * @public
140
178
  */
141
179
  ServiceCallAnalyticsLiveCompleteEvent?: ServiceCallAnalyticsLiveCompleteEvent | undefined;
180
+ /**
181
+ * Finalized record representation of a service call lifecycle, containing the full ordered sequence of lifecycle actions from queue entry to end.
182
+ * @public
183
+ */
184
+ ServiceCallAnalyticsRecordEvent?: ServiceCallAnalyticsRecordEvent | undefined;
142
185
  CallEventType?: CallEventType | undefined;
143
186
  ConferenceEventType?: ConferenceEventType | undefined;
144
187
  ChatEventType?: ChatEventType | undefined;
@@ -263,6 +306,11 @@ export interface ServiceInfo {
263
306
  * @public
264
307
  */
265
308
  pbx?: string | undefined;
309
+ /**
310
+ * ACL group identifier associated with the service.
311
+ * @public
312
+ */
313
+ aclGroup?: string | undefined;
266
314
  }
267
315
  /**
268
316
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-stream-client",
3
3
  "description": "@wildix/wda-stream-client client",
4
- "version": "1.1.49",
4
+ "version": "1.1.56",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",