@wildix/wda-stream-client 1.1.67 → 1.1.70
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 +18 -2
- package/dist-cjs/protocols/Aws_restJson1.js +83 -0
- package/dist-es/models/models_0.js +16 -0
- package/dist-es/protocols/Aws_restJson1.js +83 -0
- package/dist-types/commands/ConsumeEventCommand.d.ts +5 -0
- package/dist-types/commands/DescribeEventCommand.d.ts +218 -43
- package/dist-types/models/models_0.d.ts +80 -67
- package/dist-types/models/models_1.d.ts +109 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1432,6 +1432,62 @@ export interface TranscriptionTextChunk {
|
|
|
1432
1432
|
time: string;
|
|
1433
1433
|
offset: number;
|
|
1434
1434
|
}
|
|
1435
|
+
/**
|
|
1436
|
+
* @public
|
|
1437
|
+
* @enum
|
|
1438
|
+
*/
|
|
1439
|
+
export declare const InsightsStatus: {
|
|
1440
|
+
readonly FAILED: "FAILED";
|
|
1441
|
+
readonly NONE: "NONE";
|
|
1442
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
1443
|
+
readonly STARTED: "STARTED";
|
|
1444
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1445
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1446
|
+
};
|
|
1447
|
+
/**
|
|
1448
|
+
* @public
|
|
1449
|
+
*/
|
|
1450
|
+
export type InsightsStatus = typeof InsightsStatus[keyof typeof InsightsStatus];
|
|
1451
|
+
/**
|
|
1452
|
+
* @public
|
|
1453
|
+
*/
|
|
1454
|
+
export interface ProjectionInsightsField {
|
|
1455
|
+
id: string;
|
|
1456
|
+
name: string;
|
|
1457
|
+
value: __DocumentType;
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* @public
|
|
1461
|
+
* @enum
|
|
1462
|
+
*/
|
|
1463
|
+
export declare const InsightsReason: {
|
|
1464
|
+
readonly CONDITIONS_NOT_MATCH: "CONDITIONS_NOT_MATCH";
|
|
1465
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
1466
|
+
readonly TRANSCRIPTION_TOO_SMALL: "TRANSCRIPTION_TOO_SMALL";
|
|
1467
|
+
};
|
|
1468
|
+
/**
|
|
1469
|
+
* @public
|
|
1470
|
+
*/
|
|
1471
|
+
export type InsightsReason = typeof InsightsReason[keyof typeof InsightsReason];
|
|
1472
|
+
/**
|
|
1473
|
+
* @public
|
|
1474
|
+
*/
|
|
1475
|
+
export interface ProjectionInsights {
|
|
1476
|
+
id: string;
|
|
1477
|
+
/**
|
|
1478
|
+
* A version of projection that was used to generate the insights.
|
|
1479
|
+
* @public
|
|
1480
|
+
*/
|
|
1481
|
+
version: number;
|
|
1482
|
+
name: string;
|
|
1483
|
+
status: InsightsStatus;
|
|
1484
|
+
/**
|
|
1485
|
+
* Additional information to the status field which describes the reason behind the status.
|
|
1486
|
+
* @public
|
|
1487
|
+
*/
|
|
1488
|
+
reason?: InsightsReason | undefined;
|
|
1489
|
+
fields: (ProjectionInsightsField)[];
|
|
1490
|
+
}
|
|
1435
1491
|
/**
|
|
1436
1492
|
* @public
|
|
1437
1493
|
*/
|
|
@@ -3402,6 +3458,7 @@ export interface ServiceAgentConsumeEventData {
|
|
|
3402
3458
|
message?: string | undefined;
|
|
3403
3459
|
lastQueueCallEnd?: number | undefined;
|
|
3404
3460
|
userExtension?: string | undefined;
|
|
3461
|
+
userLicense?: string | undefined;
|
|
3405
3462
|
department?: string | undefined;
|
|
3406
3463
|
name?: string | undefined;
|
|
3407
3464
|
aclGroup?: string | undefined;
|
|
@@ -3641,6 +3698,7 @@ export interface ServiceAgent {
|
|
|
3641
3698
|
message?: string | undefined;
|
|
3642
3699
|
lastQueueCallEnd?: number | undefined;
|
|
3643
3700
|
userExtension?: string | undefined;
|
|
3701
|
+
userLicense?: string | undefined;
|
|
3644
3702
|
department?: string | undefined;
|
|
3645
3703
|
name?: string | undefined;
|
|
3646
3704
|
aclGroup?: string | undefined;
|
|
@@ -6829,6 +6887,7 @@ export interface WebhookCallAnnotationsCompletedEventData {
|
|
|
6829
6887
|
export declare const WebhookEventType: {
|
|
6830
6888
|
readonly CALL_ANNOTATIONS_COMPLETED: "call:annotations:completed";
|
|
6831
6889
|
readonly CALL_COMPLETED: "call:completed";
|
|
6890
|
+
readonly CALL_INSIGHTS_COMPLETED: "call:insights:completed";
|
|
6832
6891
|
readonly CALL_LIVE_ANNOTATION: "call:live:annotation";
|
|
6833
6892
|
readonly CALL_LIVE_COMPLETED: "call:live:completed";
|
|
6834
6893
|
readonly CALL_LIVE_INTERRUPTED: "call:live:interrupted";
|
|
@@ -6843,6 +6902,7 @@ export declare const WebhookEventType: {
|
|
|
6843
6902
|
readonly CALL_TRANSCRIPTION_TEXT_COMPLETED: "call:transcription:text:completed";
|
|
6844
6903
|
readonly CHAT_ANNOTATIONS_COMPLETED: "chat:annotations:completed";
|
|
6845
6904
|
readonly CHAT_COMPLETED: "chat:completed";
|
|
6905
|
+
readonly CHAT_INSIGHTS_COMPLETED: "chat:insights:completed";
|
|
6846
6906
|
readonly CHAT_LIVE_ANNOTATION: "chat:live:annotation";
|
|
6847
6907
|
readonly CHAT_LIVE_COMPLETED: "chat:live:completed";
|
|
6848
6908
|
readonly CHAT_LIVE_INTERRUPTED: "chat:live:interrupted";
|
|
@@ -6852,6 +6912,7 @@ export declare const WebhookEventType: {
|
|
|
6852
6912
|
readonly CHAT_SUMMARY_COMPLETED: "chat:summary:completed";
|
|
6853
6913
|
readonly CONFERENCE_ANNOTATIONS_COMPLETED: "conference:annotations:completed";
|
|
6854
6914
|
readonly CONFERENCE_COMPLETED: "conference:completed";
|
|
6915
|
+
readonly CONFERENCE_INSIGHTS_COMPLETED: "conference:insights:completed";
|
|
6855
6916
|
readonly CONFERENCE_LIVE_ANNOTATION: "conference:live:annotation";
|
|
6856
6917
|
readonly CONFERENCE_LIVE_COMPLETED: "conference:live:completed";
|
|
6857
6918
|
readonly CONFERENCE_LIVE_INTERRUPTED: "conference:live:interrupted";
|
|
@@ -6900,6 +6961,25 @@ export interface WebhookCallCompletedEvent {
|
|
|
6900
6961
|
integrationId: string;
|
|
6901
6962
|
data: CallAnalyticsRecordEvent;
|
|
6902
6963
|
}
|
|
6964
|
+
/**
|
|
6965
|
+
* @public
|
|
6966
|
+
*/
|
|
6967
|
+
export interface WebhookCallInsightsCompletedEventData {
|
|
6968
|
+
call: CallRecord;
|
|
6969
|
+
insights: (ProjectionInsights)[];
|
|
6970
|
+
}
|
|
6971
|
+
/**
|
|
6972
|
+
* @public
|
|
6973
|
+
*/
|
|
6974
|
+
export interface WebhookCallInsightsCompletedEvent {
|
|
6975
|
+
id: string;
|
|
6976
|
+
pbx?: string | undefined;
|
|
6977
|
+
company?: string | undefined;
|
|
6978
|
+
type: WebhookEventType;
|
|
6979
|
+
time: number;
|
|
6980
|
+
integrationId: string;
|
|
6981
|
+
data: WebhookCallInsightsCompletedEventData;
|
|
6982
|
+
}
|
|
6903
6983
|
/**
|
|
6904
6984
|
* @public
|
|
6905
6985
|
*/
|
|
@@ -7065,70 +7145,3 @@ export interface WebhookCallTranscriptionTextCompletedEvent {
|
|
|
7065
7145
|
integrationId: string;
|
|
7066
7146
|
data: WebhookCallTranscriptionTextCompletedEventData;
|
|
7067
7147
|
}
|
|
7068
|
-
/**
|
|
7069
|
-
* @public
|
|
7070
|
-
*/
|
|
7071
|
-
export interface WebhookChatAnnotationsCompletedEventData {
|
|
7072
|
-
chat: ChatRecord;
|
|
7073
|
-
annotations: (Annotation)[];
|
|
7074
|
-
}
|
|
7075
|
-
/**
|
|
7076
|
-
* @public
|
|
7077
|
-
*/
|
|
7078
|
-
export interface WebhookChatAnnotationsCompletedEvent {
|
|
7079
|
-
id: string;
|
|
7080
|
-
pbx?: string | undefined;
|
|
7081
|
-
company?: string | undefined;
|
|
7082
|
-
type: WebhookEventType;
|
|
7083
|
-
time: number;
|
|
7084
|
-
integrationId: string;
|
|
7085
|
-
data: WebhookChatAnnotationsCompletedEventData;
|
|
7086
|
-
}
|
|
7087
|
-
/**
|
|
7088
|
-
* @public
|
|
7089
|
-
*/
|
|
7090
|
-
export interface WebhookChatCompletedEvent {
|
|
7091
|
-
id: string;
|
|
7092
|
-
pbx?: string | undefined;
|
|
7093
|
-
company?: string | undefined;
|
|
7094
|
-
type: WebhookEventType;
|
|
7095
|
-
time: number;
|
|
7096
|
-
integrationId: string;
|
|
7097
|
-
data: ChatAnalyticsRecordEvent;
|
|
7098
|
-
}
|
|
7099
|
-
/**
|
|
7100
|
-
* @public
|
|
7101
|
-
*/
|
|
7102
|
-
export interface WebhookChatLiveAnnotationEvent {
|
|
7103
|
-
id: string;
|
|
7104
|
-
pbx?: string | undefined;
|
|
7105
|
-
company?: string | undefined;
|
|
7106
|
-
type: WebhookEventType;
|
|
7107
|
-
time: number;
|
|
7108
|
-
integrationId: string;
|
|
7109
|
-
data: ChatAnalyticsLiveAnnotationEvent;
|
|
7110
|
-
}
|
|
7111
|
-
/**
|
|
7112
|
-
* @public
|
|
7113
|
-
*/
|
|
7114
|
-
export interface WebhookChatLiveCompletedEvent {
|
|
7115
|
-
id: string;
|
|
7116
|
-
pbx?: string | undefined;
|
|
7117
|
-
company?: string | undefined;
|
|
7118
|
-
type: WebhookEventType;
|
|
7119
|
-
time: number;
|
|
7120
|
-
integrationId: string;
|
|
7121
|
-
data: ChatAnalyticsLiveCompleteEvent;
|
|
7122
|
-
}
|
|
7123
|
-
/**
|
|
7124
|
-
* @public
|
|
7125
|
-
*/
|
|
7126
|
-
export interface WebhookChatLiveInterruptedEvent {
|
|
7127
|
-
id: string;
|
|
7128
|
-
pbx?: string | undefined;
|
|
7129
|
-
company?: string | undefined;
|
|
7130
|
-
type: WebhookEventType;
|
|
7131
|
-
time: number;
|
|
7132
|
-
integrationId: string;
|
|
7133
|
-
data: ChatAnalyticsLiveInterruptedEvent;
|
|
7134
|
-
}
|
|
@@ -1,7 +1,93 @@
|
|
|
1
1
|
import { WdaStreamServiceException as __BaseException } from "./WdaStreamServiceException";
|
|
2
|
-
import { Annotation, CallAnalyticsAnnotationsRecordEvent, CallAnalyticsCostRecordEvent, CallAnalyticsLiveAnnotationEvent, CallAnalyticsLiveCompleteEvent, CallAnalyticsLiveInterruptedEvent, CallAnalyticsLiveProgressEvent, CallAnalyticsLiveProgressEventFlow, CallAnalyticsLiveTranscriptionEvent, CallAnalyticsRecordEvent, CallAnalyticsTranscriptionRecordEvent, CallDevice, CallEventType, ChatAnalyticsAnnotationsRecordEvent, ChatAnalyticsLiveAnnotationEvent, ChatAnalyticsLiveCompleteEvent, ChatAnalyticsLiveInterruptedEvent, ChatAnalyticsLiveProgressEvent, ChatAnalyticsLiveTranscriptionEvent, ChatAnalyticsManagerMissedEvent, ChatAnalyticsRecordEvent, ChatAnalyticsTranscriptionRecordEvent, ChatEventType, ChatRecord, ConferenceAnalyticsAnnotationsRecordEvent, ConferenceAnalyticsLiveAnnotationEvent, ConferenceAnalyticsLiveCompleteEvent, ConferenceAnalyticsLiveInterruptedEvent, ConferenceAnalyticsLiveJoinEvent, ConferenceAnalyticsLiveLeaveEvent, ConferenceAnalyticsLiveProgressEvent, ConferenceAnalyticsLiveTranscriptionEvent, ConferenceAnalyticsRecordEvent, ConferenceAnalyticsTranscriptionRecordEvent, ConferenceEventType, ConferenceParticipant, ConferenceRecord, PresenceAnalyticsConferenceEvent, PresenceAnalyticsStatusEvent, PresenceAnalyticsTelephonyEvent, PresenceEventType, ServiceAgentsStatusAnalyticsRecordEvent, ServiceAnalyticsLiveCompleteEvent, ServiceAnalyticsLiveProgressEvent, ServiceCallAnalyticsLiveCompleteEvent, ServiceCallAnalyticsLiveProgressEvent, ServiceCallAnalyticsRecordEvent, ServiceCallEventType, ServiceEventType, SmsStatusConsumeEventData, TranscriptionSummary, TranscriptionTextChunk, WebhookCallAnnotationsCompletedEvent, WebhookCallCompletedEvent, WebhookCallLiveAnnotationEvent, WebhookCallLiveCompletedEvent, WebhookCallLiveInterruptedEvent, WebhookCallLiveProgressEvent, WebhookCallLiveRecordPauseEvent, WebhookCallLiveRecordStartEvent, WebhookCallLiveRecordStopEvent, WebhookCallLiveRecordUnpauseEvent, WebhookCallLiveTranscriptionEvent, WebhookCallSummaryCompletedEvent, WebhookCallTranscriptionCompletedEvent, WebhookCallTranscriptionTextCompletedEvent,
|
|
2
|
+
import { Annotation, CallAnalyticsAnnotationsRecordEvent, CallAnalyticsCostRecordEvent, CallAnalyticsLiveAnnotationEvent, CallAnalyticsLiveCompleteEvent, CallAnalyticsLiveInterruptedEvent, CallAnalyticsLiveProgressEvent, CallAnalyticsLiveProgressEventFlow, CallAnalyticsLiveTranscriptionEvent, CallAnalyticsRecordEvent, CallAnalyticsTranscriptionRecordEvent, CallDevice, CallEventType, ChatAnalyticsAnnotationsRecordEvent, ChatAnalyticsLiveAnnotationEvent, ChatAnalyticsLiveCompleteEvent, ChatAnalyticsLiveInterruptedEvent, ChatAnalyticsLiveProgressEvent, ChatAnalyticsLiveTranscriptionEvent, ChatAnalyticsManagerMissedEvent, ChatAnalyticsRecordEvent, ChatAnalyticsTranscriptionRecordEvent, ChatEventType, ChatRecord, ConferenceAnalyticsAnnotationsRecordEvent, ConferenceAnalyticsLiveAnnotationEvent, ConferenceAnalyticsLiveCompleteEvent, ConferenceAnalyticsLiveInterruptedEvent, ConferenceAnalyticsLiveJoinEvent, ConferenceAnalyticsLiveLeaveEvent, ConferenceAnalyticsLiveProgressEvent, ConferenceAnalyticsLiveTranscriptionEvent, ConferenceAnalyticsRecordEvent, ConferenceAnalyticsTranscriptionRecordEvent, ConferenceEventType, ConferenceParticipant, ConferenceRecord, PresenceAnalyticsConferenceEvent, PresenceAnalyticsStatusEvent, PresenceAnalyticsTelephonyEvent, PresenceEventType, ProjectionInsights, ServiceAgentsStatusAnalyticsRecordEvent, ServiceAnalyticsLiveCompleteEvent, ServiceAnalyticsLiveProgressEvent, ServiceCallAnalyticsLiveCompleteEvent, ServiceCallAnalyticsLiveProgressEvent, ServiceCallAnalyticsRecordEvent, ServiceCallEventType, ServiceEventType, SmsStatusConsumeEventData, TranscriptionSummary, TranscriptionTextChunk, WebhookCallAnnotationsCompletedEvent, WebhookCallCompletedEvent, WebhookCallInsightsCompletedEvent, WebhookCallLiveAnnotationEvent, WebhookCallLiveCompletedEvent, WebhookCallLiveInterruptedEvent, WebhookCallLiveProgressEvent, WebhookCallLiveRecordPauseEvent, WebhookCallLiveRecordStartEvent, WebhookCallLiveRecordStopEvent, WebhookCallLiveRecordUnpauseEvent, WebhookCallLiveTranscriptionEvent, WebhookCallSummaryCompletedEvent, WebhookCallTranscriptionCompletedEvent, WebhookCallTranscriptionTextCompletedEvent, WebhookEventType, WebsocketAuthorizeAction, 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 WebhookChatAnnotationsCompletedEventData {
|
|
9
|
+
chat: ChatRecord;
|
|
10
|
+
annotations: (Annotation)[];
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export interface WebhookChatAnnotationsCompletedEvent {
|
|
16
|
+
id: string;
|
|
17
|
+
pbx?: string | undefined;
|
|
18
|
+
company?: string | undefined;
|
|
19
|
+
type: WebhookEventType;
|
|
20
|
+
time: number;
|
|
21
|
+
integrationId: string;
|
|
22
|
+
data: WebhookChatAnnotationsCompletedEventData;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export interface WebhookChatCompletedEvent {
|
|
28
|
+
id: string;
|
|
29
|
+
pbx?: string | undefined;
|
|
30
|
+
company?: string | undefined;
|
|
31
|
+
type: WebhookEventType;
|
|
32
|
+
time: number;
|
|
33
|
+
integrationId: string;
|
|
34
|
+
data: ChatAnalyticsRecordEvent;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface WebhookChatInsightsCompletedEventData {
|
|
40
|
+
chat: ChatRecord;
|
|
41
|
+
insights: (ProjectionInsights)[];
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export interface WebhookChatInsightsCompletedEvent {
|
|
47
|
+
id: string;
|
|
48
|
+
pbx?: string | undefined;
|
|
49
|
+
company?: string | undefined;
|
|
50
|
+
type: WebhookEventType;
|
|
51
|
+
time: number;
|
|
52
|
+
integrationId: string;
|
|
53
|
+
data: WebhookChatInsightsCompletedEventData;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export interface WebhookChatLiveAnnotationEvent {
|
|
59
|
+
id: string;
|
|
60
|
+
pbx?: string | undefined;
|
|
61
|
+
company?: string | undefined;
|
|
62
|
+
type: WebhookEventType;
|
|
63
|
+
time: number;
|
|
64
|
+
integrationId: string;
|
|
65
|
+
data: ChatAnalyticsLiveAnnotationEvent;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export interface WebhookChatLiveCompletedEvent {
|
|
71
|
+
id: string;
|
|
72
|
+
pbx?: string | undefined;
|
|
73
|
+
company?: string | undefined;
|
|
74
|
+
type: WebhookEventType;
|
|
75
|
+
time: number;
|
|
76
|
+
integrationId: string;
|
|
77
|
+
data: ChatAnalyticsLiveCompleteEvent;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export interface WebhookChatLiveInterruptedEvent {
|
|
83
|
+
id: string;
|
|
84
|
+
pbx?: string | undefined;
|
|
85
|
+
company?: string | undefined;
|
|
86
|
+
type: WebhookEventType;
|
|
87
|
+
time: number;
|
|
88
|
+
integrationId: string;
|
|
89
|
+
data: ChatAnalyticsLiveInterruptedEvent;
|
|
90
|
+
}
|
|
5
91
|
/**
|
|
6
92
|
* @public
|
|
7
93
|
*/
|
|
@@ -76,6 +162,25 @@ export interface WebhookConferenceCompletedEvent {
|
|
|
76
162
|
integrationId: string;
|
|
77
163
|
data: ConferenceAnalyticsRecordEvent;
|
|
78
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
export interface WebhookConferenceInsightsCompletedEventData {
|
|
169
|
+
conference: ConferenceRecord;
|
|
170
|
+
insights: (ProjectionInsights)[];
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
export interface WebhookConferenceInsightsCompletedEvent {
|
|
176
|
+
id: string;
|
|
177
|
+
pbx?: string | undefined;
|
|
178
|
+
company?: string | undefined;
|
|
179
|
+
type: WebhookEventType;
|
|
180
|
+
time: number;
|
|
181
|
+
integrationId: string;
|
|
182
|
+
data: WebhookConferenceInsightsCompletedEventData;
|
|
183
|
+
}
|
|
79
184
|
/**
|
|
80
185
|
* @public
|
|
81
186
|
*/
|
|
@@ -596,6 +701,7 @@ export interface DescribeEventOutput {
|
|
|
596
701
|
WebhookCallTranscriptionCompletedEvent?: WebhookCallTranscriptionCompletedEvent | undefined;
|
|
597
702
|
WebhookCallTranscriptionTextCompletedEvent?: WebhookCallTranscriptionTextCompletedEvent | undefined;
|
|
598
703
|
WebhookCallAnnotationsCompletedEvent?: WebhookCallAnnotationsCompletedEvent | undefined;
|
|
704
|
+
WebhookCallInsightsCompletedEvent?: WebhookCallInsightsCompletedEvent | undefined;
|
|
599
705
|
WebhookCallSummaryCompletedEvent?: WebhookCallSummaryCompletedEvent | undefined;
|
|
600
706
|
WebhookConferenceLiveProgressEvent?: WebhookConferenceLiveProgressEvent | undefined;
|
|
601
707
|
WebhookConferenceLiveCompletedEvent?: WebhookConferenceLiveCompletedEvent | undefined;
|
|
@@ -608,6 +714,7 @@ export interface DescribeEventOutput {
|
|
|
608
714
|
WebhookConferenceTranscriptionCompletedEvent?: WebhookConferenceTranscriptionCompletedEvent | undefined;
|
|
609
715
|
WebhookConferenceTranscriptionTextCompletedEvent?: WebhookConferenceTranscriptionTextCompletedEvent | undefined;
|
|
610
716
|
WebhookConferenceAnnotationsCompletedEvent?: WebhookConferenceAnnotationsCompletedEvent | undefined;
|
|
717
|
+
WebhookConferenceInsightsCompletedEvent?: WebhookConferenceInsightsCompletedEvent | undefined;
|
|
611
718
|
WebhookConferenceSummaryCompletedEvent?: WebhookConferenceSummaryCompletedEvent | undefined;
|
|
612
719
|
WebhookServiceCallLiveProgressEvent?: WebhookServiceCallLiveProgressEvent | undefined;
|
|
613
720
|
WebhookServiceCallLiveCompletedEvent?: WebhookServiceCallLiveCompletedEvent | undefined;
|
|
@@ -618,6 +725,7 @@ export interface DescribeEventOutput {
|
|
|
618
725
|
WebhookChatManagerMissedEvent?: WebhookChatManagerMissedEvent | undefined;
|
|
619
726
|
WebhookChatCompletedEvent?: WebhookChatCompletedEvent | undefined;
|
|
620
727
|
WebhookChatAnnotationsCompletedEvent?: WebhookChatAnnotationsCompletedEvent | undefined;
|
|
728
|
+
WebhookChatInsightsCompletedEvent?: WebhookChatInsightsCompletedEvent | undefined;
|
|
621
729
|
WebhookChatSummaryCompletedEvent?: WebhookChatSummaryCompletedEvent | undefined;
|
|
622
730
|
WebhookOutdatedCallStartEvent?: WebhookOutdatedCallStartEvent | undefined;
|
|
623
731
|
WebhookOutdatedCallUpdateEvent?: WebhookOutdatedCallUpdateEvent | undefined;
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: WdaStreamClientConfig) => {
|
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
requestHandler: import("@smithy/
|
|
12
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
13
13
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
sha256: import("@smithy/types").HashConstructor;
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: WdaStreamClientConfig) => {
|
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
requestHandler: RequestHandler | import("@smithy/
|
|
12
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
13
13
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
sha256: import("@smithy/types").HashConstructor;
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: WdaStreamClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
9
9
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
10
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/
|
|
10
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
cacheMiddleware?: boolean | undefined;
|
|
12
12
|
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
13
13
|
protocolSettings?: {
|
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.70",
|
|
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",
|
|
@@ -80,4 +80,4 @@
|
|
|
80
80
|
"react-native": {
|
|
81
81
|
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
82
82
|
}
|
|
83
|
-
}
|
|
83
|
+
}
|