@wildix/wda-stream-client 1.1.47 → 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.
Files changed (34) hide show
  1. package/dist-cjs/WdaStream.js +2 -0
  2. package/dist-cjs/commands/ListServicesCommand.js +21 -0
  3. package/dist-cjs/commands/index.js +1 -0
  4. package/dist-cjs/models/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +77 -41
  6. package/dist-cjs/models/models_1.js +44 -0
  7. package/dist-cjs/protocols/Aws_restJson1.js +146 -8
  8. package/dist-es/WdaStream.js +2 -0
  9. package/dist-es/commands/ListServicesCommand.js +17 -0
  10. package/dist-es/commands/index.js +1 -0
  11. package/dist-es/models/index.js +1 -0
  12. package/dist-es/models/models_0.js +76 -38
  13. package/dist-es/models/models_1.js +39 -0
  14. package/dist-es/protocols/Aws_restJson1.js +142 -6
  15. package/dist-types/WdaStream.d.ts +8 -0
  16. package/dist-types/WdaStreamClient.d.ts +3 -2
  17. package/dist-types/commands/ConsumeEventCommand.d.ts +203 -12
  18. package/dist-types/commands/DescribeEventCommand.d.ts +411 -117
  19. package/dist-types/commands/GetConferenceIdCommand.d.ts +1 -1
  20. package/dist-types/commands/GetOngoingCallCommand.d.ts +3 -1
  21. package/dist-types/commands/GetOngoingCallTranscriptionCommand.d.ts +3 -2
  22. package/dist-types/commands/GetOngoingConferenceCommand.d.ts +2 -2
  23. package/dist-types/commands/GetOngoingConferenceTranscriptionCommand.d.ts +3 -3
  24. package/dist-types/commands/ListServicesCommand.d.ts +87 -0
  25. package/dist-types/commands/QueryConversationsCommand.d.ts +5 -5
  26. package/dist-types/commands/QueryPresenceCommand.d.ts +1 -1
  27. package/dist-types/commands/QueryPresencesCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdatePresenceLastSeenCommand.d.ts +1 -1
  29. package/dist-types/commands/index.d.ts +1 -0
  30. package/dist-types/models/index.d.ts +1 -0
  31. package/dist-types/models/models_0.d.ts +1355 -423
  32. package/dist-types/models/models_1.d.ts +471 -0
  33. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  34. package/package.json +1 -1
@@ -0,0 +1,471 @@
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";
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
+ }
162
+ /**
163
+ * @public
164
+ */
165
+ export declare class MatchNotFoundException extends __BaseException {
166
+ readonly name: "MatchNotFoundException";
167
+ readonly $fault: "client";
168
+ /**
169
+ * @internal
170
+ */
171
+ constructor(opts: __ExceptionOptionType<MatchNotFoundException, __BaseException>);
172
+ }
173
+ /**
174
+ * @public
175
+ */
176
+ export interface GetOngoingCallInput {
177
+ company?: string | undefined;
178
+ callId: string;
179
+ }
180
+ /**
181
+ * @public
182
+ */
183
+ export interface GetOngoingCallOutput {
184
+ company: string;
185
+ flows: (CallAnalyticsLiveProgressEventFlow)[];
186
+ }
187
+ /**
188
+ * @public
189
+ */
190
+ export interface GetOngoingCallTranscriptionInput {
191
+ company?: string | undefined;
192
+ callId: string;
193
+ }
194
+ /**
195
+ * @public
196
+ */
197
+ export interface GetOngoingCallTranscriptionOutput {
198
+ company: string;
199
+ flows: (CallAnalyticsLiveProgressEventFlow)[];
200
+ transcriptions?: (CallAnalyticsLiveTranscriptionEvent)[] | undefined;
201
+ }
202
+ /**
203
+ * @public
204
+ */
205
+ export interface GetOngoingConferenceInput {
206
+ company?: string | undefined;
207
+ conferenceId: string;
208
+ }
209
+ /**
210
+ * @public
211
+ */
212
+ export interface GetOngoingConferenceOutput {
213
+ conference: ConferenceAnalyticsLiveProgressEvent;
214
+ }
215
+ /**
216
+ * @public
217
+ */
218
+ export interface GetOngoingConferenceTranscriptionInput {
219
+ company?: string | undefined;
220
+ conferenceId: string;
221
+ }
222
+ /**
223
+ * @public
224
+ */
225
+ export interface GetOngoingConferenceTranscriptionOutput {
226
+ conference: ConferenceAnalyticsLiveProgressEvent;
227
+ transcriptions?: (ConferenceAnalyticsLiveTranscriptionEvent)[] | undefined;
228
+ }
229
+ /**
230
+ * @public
231
+ */
232
+ export interface ListServicesFilter {
233
+ pbx?: string | undefined;
234
+ }
235
+ /**
236
+ * @public
237
+ */
238
+ export interface ListServicesInput {
239
+ /**
240
+ * The unique identifier of the company.
241
+ * @public
242
+ */
243
+ company?: string | undefined;
244
+ filter?: (ListServicesFilter)[] | undefined;
245
+ }
246
+ /**
247
+ * Basic information about a service, used in list responses.
248
+ * @public
249
+ */
250
+ export interface ServiceInfo {
251
+ /**
252
+ * The unique identifier of the service.
253
+ * @public
254
+ */
255
+ id: string;
256
+ /**
257
+ * The display name of the service.
258
+ * @public
259
+ */
260
+ name: string;
261
+ /**
262
+ * The PBX identifier of the service.
263
+ * @public
264
+ */
265
+ pbx?: string | undefined;
266
+ }
267
+ /**
268
+ * @public
269
+ */
270
+ export interface ListServicesOutput {
271
+ /**
272
+ * List of active services with basic information.
273
+ * @public
274
+ */
275
+ services: (ServiceInfo)[];
276
+ }
277
+ /**
278
+ * @public
279
+ * @enum
280
+ */
281
+ export declare const PresenceStatus: {
282
+ readonly AWAY: "AWAY";
283
+ readonly DND: "DND";
284
+ readonly OFFLINE: "OFFLINE";
285
+ readonly ONLINE: "ONLINE";
286
+ readonly ONLY_SIP: "ONLY_SIP";
287
+ };
288
+ /**
289
+ * @public
290
+ */
291
+ export type PresenceStatus = typeof PresenceStatus[keyof typeof PresenceStatus];
292
+ /**
293
+ * @public
294
+ * @enum
295
+ */
296
+ export declare const TelephonyStatus: {
297
+ readonly REGISTERED: "REGISTERED";
298
+ readonly RINGING: "RINGING";
299
+ readonly RT: "RT";
300
+ readonly TALKING: "TALKING";
301
+ readonly UNREGISTERED: "UNREGISTERED";
302
+ };
303
+ /**
304
+ * @public
305
+ */
306
+ export type TelephonyStatus = typeof TelephonyStatus[keyof typeof TelephonyStatus];
307
+ /**
308
+ * @public
309
+ */
310
+ export interface Presence {
311
+ /**
312
+ * The unique identifier of the organization user belongs to (example: it_w119845).
313
+ * @public
314
+ */
315
+ company?: string | undefined;
316
+ /**
317
+ * The user's geographic address (example: 1 Kynner Way, Binley, Coventry, CV3 2TU, England).
318
+ * @public
319
+ */
320
+ address?: string | undefined;
321
+ /**
322
+ * The user extension (example: 2001)
323
+ * @public
324
+ */
325
+ extension?: string | undefined;
326
+ /**
327
+ * The unique identifier of the user (example: F2P9tcKrYI9p).
328
+ * @public
329
+ */
330
+ id?: string | undefined;
331
+ /**
332
+ * Longitude is the unit that represent the coordinates at geographic coordinate system (example: 35.5753).
333
+ * @public
334
+ */
335
+ lng?: string | undefined;
336
+ /**
337
+ * Latitude is the unit that represent the coordinates at geographic coordinate system(example: 23.2954).
338
+ * @public
339
+ */
340
+ lat?: string | undefined;
341
+ /**
342
+ * If it is defined, user status switches back to Available after the time (example: 2024-08-08T17:16:00Z).
343
+ * @public
344
+ */
345
+ until?: string | undefined;
346
+ /**
347
+ * User status (example: AWAY)
348
+ * @public
349
+ */
350
+ status?: PresenceStatus | undefined;
351
+ /**
352
+ * User status custom message (example: on vacation).
353
+ * @public
354
+ */
355
+ message?: string | undefined;
356
+ /**
357
+ * User telephony status (example: TALKING)
358
+ * @public
359
+ */
360
+ telephony?: TelephonyStatus | undefined;
361
+ /**
362
+ * The string shows the time the user was last seen. (example: 2024-08-08T17:16:00Z).
363
+ * @public
364
+ */
365
+ seen?: string | undefined;
366
+ }
367
+ /**
368
+ * @public
369
+ */
370
+ export declare class PresenceNotAvailableException extends __BaseException {
371
+ readonly name: "PresenceNotAvailableException";
372
+ readonly $fault: "client";
373
+ /**
374
+ * @internal
375
+ */
376
+ constructor(opts: __ExceptionOptionType<PresenceNotAvailableException, __BaseException>);
377
+ }
378
+ /**
379
+ * @public
380
+ */
381
+ export interface PresenceQueryFilter {
382
+ /**
383
+ * The unique identifier of the user (example: F2P9tcKrYI9p).
384
+ * @public
385
+ */
386
+ id?: string | undefined;
387
+ /**
388
+ * The unique identifier of the organization user belongs to (example: it_w119845).
389
+ * @public
390
+ */
391
+ company?: string | undefined;
392
+ /**
393
+ * The user extension (example: 2001
394
+ * @public
395
+ */
396
+ extension?: string | undefined;
397
+ }
398
+ /**
399
+ * @public
400
+ */
401
+ export interface QueryConversationsInput {
402
+ company?: string | undefined;
403
+ /**
404
+ * List of filters to match the user conversations list.
405
+ * @public
406
+ */
407
+ filter?: (PresenceQueryFilter)[] | undefined;
408
+ }
409
+ /**
410
+ * @public
411
+ */
412
+ export interface QueryConversationsOutput {
413
+ calls: (CallAnalyticsLiveProgressEvent)[];
414
+ conferences: (ConferenceAnalyticsLiveProgressEvent)[];
415
+ chats: (ChatAnalyticsLiveProgressEvent)[];
416
+ }
417
+ /**
418
+ * @public
419
+ */
420
+ export interface QueryPresenceInput {
421
+ /**
422
+ * The filter, to match a presence of certain user
423
+ * @public
424
+ */
425
+ filter: PresenceQueryFilter;
426
+ }
427
+ /**
428
+ * @public
429
+ */
430
+ export interface QueryPresenceOutput {
431
+ /**
432
+ * The presence matched specified query.
433
+ * @public
434
+ */
435
+ presence: Presence;
436
+ }
437
+ /**
438
+ * @public
439
+ */
440
+ export interface QueryPresencesInput {
441
+ /**
442
+ * List of filters to match the user presence list.
443
+ * @public
444
+ */
445
+ filter: (PresenceQueryFilter)[];
446
+ }
447
+ /**
448
+ * @public
449
+ */
450
+ export interface QueryPresencesOutput {
451
+ /**
452
+ * A list of presences matched the filter. If filter does not match any presence the presence would not be added to the list.
453
+ * @public
454
+ */
455
+ presences: (Presence)[];
456
+ }
457
+ /**
458
+ * @public
459
+ */
460
+ export interface UpdatePresenceLastSeenInput {
461
+ /**
462
+ * The unique identifier of the user when a service token is used.
463
+ * @public
464
+ */
465
+ userId?: string | undefined;
466
+ }
467
+ /**
468
+ * @public
469
+ */
470
+ export interface UpdatePresenceLastSeenOutput {
471
+ }
@@ -5,6 +5,7 @@ import { GetOngoingCallCommandInput, GetOngoingCallCommandOutput } from "../comm
5
5
  import { GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput } from "../commands/GetOngoingCallTranscriptionCommand";
6
6
  import { GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput } from "../commands/GetOngoingConferenceCommand";
7
7
  import { GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput } from "../commands/GetOngoingConferenceTranscriptionCommand";
8
+ import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
8
9
  import { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "../commands/QueryConversationsCommand";
9
10
  import { QueryPresenceCommandInput, QueryPresenceCommandOutput } from "../commands/QueryPresenceCommand";
10
11
  import { QueryPresencesCommandInput, QueryPresencesCommandOutput } from "../commands/QueryPresencesCommand";
@@ -39,6 +40,10 @@ export declare const se_GetOngoingConferenceCommand: (input: GetOngoingConferenc
39
40
  * serializeAws_restJson1GetOngoingConferenceTranscriptionCommand
40
41
  */
41
42
  export declare const se_GetOngoingConferenceTranscriptionCommand: (input: GetOngoingConferenceTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_restJson1ListServicesCommand
45
+ */
46
+ export declare const se_ListServicesCommand: (input: ListServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
47
  /**
43
48
  * serializeAws_restJson1QueryConversationsCommand
44
49
  */
@@ -83,6 +88,10 @@ export declare const de_GetOngoingConferenceCommand: (output: __HttpResponse, co
83
88
  * deserializeAws_restJson1GetOngoingConferenceTranscriptionCommand
84
89
  */
85
90
  export declare const de_GetOngoingConferenceTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOngoingConferenceTranscriptionCommandOutput>;
91
+ /**
92
+ * deserializeAws_restJson1ListServicesCommand
93
+ */
94
+ export declare const de_ListServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServicesCommandOutput>;
86
95
  /**
87
96
  * deserializeAws_restJson1QueryConversationsCommand
88
97
  */
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.47",
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",