@wildix/wda-stream-client 1.1.48 → 1.1.49

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,6 +1,164 @@
1
1
  import { WdaStreamServiceException as __BaseException } from "./WdaStreamServiceException";
2
- import { CallAnalyticsLiveProgressEvent, CallAnalyticsLiveProgressEventFlow, CallAnalyticsLiveTranscriptionEvent, ChatAnalyticsLiveProgressEvent, ConferenceAnalyticsLiveProgressEvent, ConferenceAnalyticsLiveTranscriptionEvent } 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, 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";
3
3
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
4
+ import { DocumentType as __DocumentType } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface WebsocketSubscribeBadRequestException {
9
+ event?: string | undefined;
10
+ requestId?: string | undefined;
11
+ connectionId?: string | undefined;
12
+ message?: string | undefined;
13
+ code?: number | undefined;
14
+ source?: WebsocketSubscribeAction | undefined;
15
+ }
16
+ /**
17
+ * @public
18
+ */
19
+ export interface WebsocketSubscribedEvent {
20
+ event: WebsocketEvent;
21
+ connectionId: string;
22
+ requestId: string;
23
+ topic: WebsocketTopic;
24
+ duration?: __DocumentType | undefined;
25
+ }
26
+ /**
27
+ * @public
28
+ */
29
+ export interface WebsocketTranscriptionsBroadcastEvent {
30
+ event: WebsocketEvent;
31
+ topic: WebsocketTopic;
32
+ data: __DocumentType;
33
+ meta?: __DocumentType | undefined;
34
+ }
35
+ /**
36
+ * @public
37
+ */
38
+ export interface WebsocketUnsubscribeBadRequestException {
39
+ event?: string | undefined;
40
+ requestId?: string | undefined;
41
+ connectionId?: string | undefined;
42
+ message?: string | undefined;
43
+ code?: number | undefined;
44
+ source?: WebsocketUnsubscribeAction | undefined;
45
+ }
46
+ /**
47
+ * @public
48
+ */
49
+ export interface WebsocketUnsubscribedEvent {
50
+ event: WebsocketEvent;
51
+ connectionId: string;
52
+ requestId: string;
53
+ topic: WebsocketTopic;
54
+ duration?: number | undefined;
55
+ pending?: number | undefined;
56
+ }
57
+ /**
58
+ * @public
59
+ */
60
+ export interface DescribeEventOutput {
61
+ CallAnalyticsLiveProgressEvent?: CallAnalyticsLiveProgressEvent | undefined;
62
+ CallAnalyticsLiveCompleteEvent?: CallAnalyticsLiveCompleteEvent | undefined;
63
+ CallAnalyticsLiveInterruptedEvent?: CallAnalyticsLiveInterruptedEvent | undefined;
64
+ CallAnalyticsLiveTranscriptionEvent?: CallAnalyticsLiveTranscriptionEvent | undefined;
65
+ CallAnalyticsRecordEvent?: CallAnalyticsRecordEvent | undefined;
66
+ CallAnalyticsTranscriptionRecordEvent?: CallAnalyticsTranscriptionRecordEvent | undefined;
67
+ CallAnalyticsCostRecordEvent?: CallAnalyticsCostRecordEvent | undefined;
68
+ ChatAnalyticsLiveCompleteEvent?: ChatAnalyticsLiveCompleteEvent | undefined;
69
+ ChatAnalyticsLiveInterruptedEvent?: ChatAnalyticsLiveInterruptedEvent | undefined;
70
+ ChatAnalyticsLiveProgressEvent?: ChatAnalyticsLiveProgressEvent | undefined;
71
+ ChatAnalyticsLiveTranscriptionEvent?: ChatAnalyticsLiveTranscriptionEvent | undefined;
72
+ ChatAnalyticsManagerMissedEvent?: ChatAnalyticsManagerMissedEvent | undefined;
73
+ ChatAnalyticsRecordEvent?: ChatAnalyticsRecordEvent | undefined;
74
+ ChatAnalyticsTranscriptionRecordEvent?: ChatAnalyticsTranscriptionRecordEvent | undefined;
75
+ ConferenceAnalyticsLiveProgressEvent?: ConferenceAnalyticsLiveProgressEvent | undefined;
76
+ ConferenceAnalyticsLiveCompleteEvent?: ConferenceAnalyticsLiveCompleteEvent | undefined;
77
+ ConferenceAnalyticsLiveInterruptedEvent?: ConferenceAnalyticsLiveInterruptedEvent | undefined;
78
+ ConferenceAnalyticsLiveTranscriptionEvent?: ConferenceAnalyticsLiveTranscriptionEvent | undefined;
79
+ ConferenceAnalyticsLiveJoinEvent?: ConferenceAnalyticsLiveJoinEvent | undefined;
80
+ ConferenceAnalyticsLiveLeaveEvent?: ConferenceAnalyticsLiveLeaveEvent | undefined;
81
+ ConferenceAnalyticsRecordEvent?: ConferenceAnalyticsRecordEvent | undefined;
82
+ ConferenceAnalyticsTranscriptionRecordEvent?: ConferenceAnalyticsTranscriptionRecordEvent | undefined;
83
+ PresenceAnalyticsStatusEvent?: PresenceAnalyticsStatusEvent | undefined;
84
+ PresenceAnalyticsConferenceEvent?: PresenceAnalyticsConferenceEvent | undefined;
85
+ PresenceAnalyticsTelephonyEvent?: PresenceAnalyticsTelephonyEvent | undefined;
86
+ WebsocketPresenceBroadcastEvent?: WebsocketPresenceBroadcastEvent | undefined;
87
+ WebsocketConversationsBroadcastEvent?: WebsocketConversationsBroadcastEvent | undefined;
88
+ WebsocketTranscriptionsBroadcastEvent?: WebsocketTranscriptionsBroadcastEvent | undefined;
89
+ WebsocketAuthorizedEvent?: WebsocketAuthorizedEvent | undefined;
90
+ WebsocketSubscribedEvent?: WebsocketSubscribedEvent | undefined;
91
+ WebsocketUnsubscribedEvent?: WebsocketUnsubscribedEvent | undefined;
92
+ WebsocketAuthorizeBadRequestException?: WebsocketAuthorizeBadRequestException | undefined;
93
+ WebsocketSubscribeBadRequestException?: WebsocketSubscribeBadRequestException | undefined;
94
+ WebsocketUnsubscribeBadRequestException?: WebsocketUnsubscribeBadRequestException | undefined;
95
+ WebhookPresenceUserEvent?: WebhookPresenceUserEvent | undefined;
96
+ WebhookPresenceTelephonyEvent?: WebhookPresenceTelephonyEvent | undefined;
97
+ WebhookPresenceConferenceEvent?: WebhookPresenceConferenceEvent | undefined;
98
+ WebhookCallLiveProgressEvent?: WebhookCallLiveProgressEvent | undefined;
99
+ WebhookCallLiveCompletedEvent?: WebhookCallLiveCompletedEvent | undefined;
100
+ WebhookCallLiveInterruptedEvent?: WebhookCallLiveInterruptedEvent | undefined;
101
+ WebhookCallLiveTranscriptionEvent?: WebhookCallLiveTranscriptionEvent | undefined;
102
+ WebhookCallLiveRecordStartEvent?: WebhookCallLiveRecordStartEvent | undefined;
103
+ WebhookCallLiveRecordStopEvent?: WebhookCallLiveRecordStopEvent | undefined;
104
+ WebhookCallLiveRecordPauseEvent?: WebhookCallLiveRecordPauseEvent | undefined;
105
+ WebhookCallLiveRecordUnpauseEvent?: WebhookCallLiveRecordUnpauseEvent | undefined;
106
+ WebhookCallCompletedEvent?: WebhookCallCompletedEvent | undefined;
107
+ WebhookCallTranscriptionCompletedEvent?: WebhookCallTranscriptionCompletedEvent | undefined;
108
+ WebhookCallTranscriptionTextCompletedEvent?: WebhookCallTranscriptionTextCompletedEvent | undefined;
109
+ WebhookCallSummaryCompletedEvent?: WebhookCallSummaryCompletedEvent | undefined;
110
+ WebhookConferenceLiveProgressEvent?: WebhookConferenceLiveProgressEvent | undefined;
111
+ WebhookConferenceLiveCompletedEvent?: WebhookConferenceLiveCompletedEvent | undefined;
112
+ WebhookConferenceLiveInterruptedEvent?: WebhookConferenceLiveInterruptedEvent | undefined;
113
+ WebhookConferenceLiveJoinEvent?: WebhookConferenceLiveJoinEvent | undefined;
114
+ WebhookConferenceLiveLeaveEvent?: WebhookConferenceLiveLeaveEvent | undefined;
115
+ WebhookConferenceLiveTranscriptionEvent?: WebhookConferenceLiveTranscriptionEvent | undefined;
116
+ WebhookConferenceCompletedEvent?: WebhookConferenceCompletedEvent | undefined;
117
+ WebhookConferenceTranscriptionCompletedEvent?: WebhookConferenceTranscriptionCompletedEvent | undefined;
118
+ WebhookConferenceTranscriptionTextCompletedEvent?: WebhookConferenceTranscriptionTextCompletedEvent | undefined;
119
+ WebhookConferenceSummaryCompletedEvent?: WebhookConferenceSummaryCompletedEvent | undefined;
120
+ WebhookChatLiveProgressEvent?: WebhookChatLiveProgressEvent | undefined;
121
+ WebhookChatLiveCompletedEvent?: WebhookChatLiveCompletedEvent | undefined;
122
+ WebhookChatLiveInterruptedEvent?: WebhookChatLiveInterruptedEvent | undefined;
123
+ WebhookChatManagerMissedEvent?: WebhookChatManagerMissedEvent | undefined;
124
+ WebhookChatCompletedEvent?: WebhookChatCompletedEvent | undefined;
125
+ WebhookChatSummaryCompletedEvent?: WebhookChatSummaryCompletedEvent | undefined;
126
+ WebhookOutdatedCallStartEvent?: WebhookOutdatedCallStartEvent | undefined;
127
+ WebhookOutdatedCallUpdateEvent?: WebhookOutdatedCallUpdateEvent | undefined;
128
+ WebhookOutdatedCallEndEvent?: WebhookOutdatedCallEndEvent | undefined;
129
+ WebhookSmsStatusEvent?: WebhookSmsStatusEvent | undefined;
130
+ ServiceAnalyticsLiveProgressEvent?: ServiceAnalyticsLiveProgressEvent | undefined;
131
+ ServiceAnalyticsLiveCompleteEvent?: ServiceAnalyticsLiveCompleteEvent | undefined;
132
+ /**
133
+ * Service call data shared by live events and record representation.
134
+ * @public
135
+ */
136
+ ServiceCallAnalyticsLiveProgressEvent?: ServiceCallAnalyticsLiveProgressEvent | undefined;
137
+ /**
138
+ * Service call data shared by live events and record representation.
139
+ * @public
140
+ */
141
+ ServiceCallAnalyticsLiveCompleteEvent?: ServiceCallAnalyticsLiveCompleteEvent | undefined;
142
+ CallEventType?: CallEventType | undefined;
143
+ ConferenceEventType?: ConferenceEventType | undefined;
144
+ ChatEventType?: ChatEventType | undefined;
145
+ PresenceEventType?: PresenceEventType | undefined;
146
+ ServiceEventType?: ServiceEventType | undefined;
147
+ ServiceCallEventType?: ServiceCallEventType | undefined;
148
+ }
149
+ /**
150
+ * @public
151
+ */
152
+ export interface GetConferenceIdInput {
153
+ company?: string | undefined;
154
+ channelId: string;
155
+ }
156
+ /**
157
+ * @public
158
+ */
159
+ export interface GetConferenceIdOutput {
160
+ id: string;
161
+ }
4
162
  /**
5
163
  * @public
6
164
  */
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.48",
4
+ "version": "1.1.49",
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",