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