@wildix/wda-stream-client 1.0.46 → 1.0.48
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.
|
@@ -415,7 +415,19 @@ export interface CallRecord {
|
|
|
415
415
|
callerMos?: string;
|
|
416
416
|
calleeMos?: string;
|
|
417
417
|
xhoppersConfId?: string;
|
|
418
|
+
/**
|
|
419
|
+
* @deprecated
|
|
420
|
+
*
|
|
421
|
+
* Consider to use `attachments` instead.
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
418
424
|
recordings?: (string)[];
|
|
425
|
+
/**
|
|
426
|
+
* @deprecated
|
|
427
|
+
*
|
|
428
|
+
* Consider to use `attachments` instead.
|
|
429
|
+
* @public
|
|
430
|
+
*/
|
|
419
431
|
recordingsData?: (CallFlowRecording)[];
|
|
420
432
|
mergeWith?: string;
|
|
421
433
|
splitReason?: string;
|
|
@@ -427,8 +439,26 @@ export interface CallRecord {
|
|
|
427
439
|
callStatus?: ConversationStatus;
|
|
428
440
|
transcriptionStatus?: CallFlowTranscriptionStatus;
|
|
429
441
|
transcriptionLanguage?: string;
|
|
442
|
+
/**
|
|
443
|
+
* @deprecated
|
|
444
|
+
*
|
|
445
|
+
* Consider to use `attachments` instead.
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
430
448
|
attachment?: string;
|
|
449
|
+
/**
|
|
450
|
+
* @deprecated
|
|
451
|
+
*
|
|
452
|
+
* Consider to use `attachments` instead.
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
431
455
|
attachmentType?: CallFlowAttachmentType;
|
|
456
|
+
/**
|
|
457
|
+
* @deprecated
|
|
458
|
+
*
|
|
459
|
+
* Consider to use `attachments` instead.
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
432
462
|
attachmentDestinations?: (CallFlowAttachmentDestination)[];
|
|
433
463
|
attachments?: (CallFlowAttachment)[];
|
|
434
464
|
id: string;
|
|
@@ -908,7 +938,19 @@ export interface CallAnalyticsLiveProgressEventFlow {
|
|
|
908
938
|
callerMos?: string;
|
|
909
939
|
calleeMos?: string;
|
|
910
940
|
xhoppersConfId?: string;
|
|
941
|
+
/**
|
|
942
|
+
* @deprecated
|
|
943
|
+
*
|
|
944
|
+
* Consider to use `attachments` instead.
|
|
945
|
+
* @public
|
|
946
|
+
*/
|
|
911
947
|
recordings?: (string)[];
|
|
948
|
+
/**
|
|
949
|
+
* @deprecated
|
|
950
|
+
*
|
|
951
|
+
* Consider to use `attachments` instead.
|
|
952
|
+
* @public
|
|
953
|
+
*/
|
|
912
954
|
recordingsData?: (CallFlowRecording)[];
|
|
913
955
|
mergeWith?: string;
|
|
914
956
|
splitReason?: string;
|
|
@@ -920,8 +962,26 @@ export interface CallAnalyticsLiveProgressEventFlow {
|
|
|
920
962
|
callStatus?: ConversationStatus;
|
|
921
963
|
transcriptionStatus?: CallFlowTranscriptionStatus;
|
|
922
964
|
transcriptionLanguage?: string;
|
|
965
|
+
/**
|
|
966
|
+
* @deprecated
|
|
967
|
+
*
|
|
968
|
+
* Consider to use `attachments` instead.
|
|
969
|
+
* @public
|
|
970
|
+
*/
|
|
923
971
|
attachment?: string;
|
|
972
|
+
/**
|
|
973
|
+
* @deprecated
|
|
974
|
+
*
|
|
975
|
+
* Consider to use `attachments` instead.
|
|
976
|
+
* @public
|
|
977
|
+
*/
|
|
924
978
|
attachmentType?: CallFlowAttachmentType;
|
|
979
|
+
/**
|
|
980
|
+
* @deprecated
|
|
981
|
+
*
|
|
982
|
+
* Consider to use `attachments` instead.
|
|
983
|
+
* @public
|
|
984
|
+
*/
|
|
925
985
|
attachmentDestinations?: (CallFlowAttachmentDestination)[];
|
|
926
986
|
attachments?: (CallFlowAttachment)[];
|
|
927
987
|
status: CallFlowStatus;
|
|
@@ -1029,7 +1089,19 @@ export interface CallAnalyticsRecordEventFlow {
|
|
|
1029
1089
|
callerMos?: string;
|
|
1030
1090
|
calleeMos?: string;
|
|
1031
1091
|
xhoppersConfId?: string;
|
|
1092
|
+
/**
|
|
1093
|
+
* @deprecated
|
|
1094
|
+
*
|
|
1095
|
+
* Consider to use `attachments` instead.
|
|
1096
|
+
* @public
|
|
1097
|
+
*/
|
|
1032
1098
|
recordings?: (string)[];
|
|
1099
|
+
/**
|
|
1100
|
+
* @deprecated
|
|
1101
|
+
*
|
|
1102
|
+
* Consider to use `attachments` instead.
|
|
1103
|
+
* @public
|
|
1104
|
+
*/
|
|
1033
1105
|
recordingsData?: (CallFlowRecording)[];
|
|
1034
1106
|
mergeWith?: string;
|
|
1035
1107
|
splitReason?: string;
|
|
@@ -1041,8 +1113,26 @@ export interface CallAnalyticsRecordEventFlow {
|
|
|
1041
1113
|
callStatus?: ConversationStatus;
|
|
1042
1114
|
transcriptionStatus?: CallFlowTranscriptionStatus;
|
|
1043
1115
|
transcriptionLanguage?: string;
|
|
1116
|
+
/**
|
|
1117
|
+
* @deprecated
|
|
1118
|
+
*
|
|
1119
|
+
* Consider to use `attachments` instead.
|
|
1120
|
+
* @public
|
|
1121
|
+
*/
|
|
1044
1122
|
attachment?: string;
|
|
1123
|
+
/**
|
|
1124
|
+
* @deprecated
|
|
1125
|
+
*
|
|
1126
|
+
* Consider to use `attachments` instead.
|
|
1127
|
+
* @public
|
|
1128
|
+
*/
|
|
1045
1129
|
attachmentType?: CallFlowAttachmentType;
|
|
1130
|
+
/**
|
|
1131
|
+
* @deprecated
|
|
1132
|
+
*
|
|
1133
|
+
* Consider to use `attachments` instead.
|
|
1134
|
+
* @public
|
|
1135
|
+
*/
|
|
1046
1136
|
attachmentDestinations?: (CallFlowAttachmentDestination)[];
|
|
1047
1137
|
attachments?: (CallFlowAttachment)[];
|
|
1048
1138
|
}
|
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.0.
|
|
4
|
+
"version": "1.0.48",
|
|
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",
|