@wildix/wda-insights-client 1.1.46 → 3.1.46

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 (231) hide show
  1. package/dist-cjs/WdaInsights.js +3 -3
  2. package/dist-cjs/WdaInsightsClient.js +34 -26
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/CreateDashboardCommand.js +10 -11
  6. package/dist-cjs/commands/CreateFilterCommand.js +10 -11
  7. package/dist-cjs/commands/CreatePlaylistCommand.js +10 -11
  8. package/dist-cjs/commands/CreateProjectionCommand.js +10 -11
  9. package/dist-cjs/commands/CreateProjectionsCategoryCommand.js +10 -11
  10. package/dist-cjs/commands/DeleteDashboardCommand.js +10 -11
  11. package/dist-cjs/commands/DeleteFilterCommand.js +10 -11
  12. package/dist-cjs/commands/DeletePlaylistCommand.js +10 -11
  13. package/dist-cjs/commands/DeletePlaylistItemCommand.js +10 -11
  14. package/dist-cjs/commands/DeleteProjectionCommand.js +10 -11
  15. package/dist-cjs/commands/DeleteProjectionsCategoryCommand.js +10 -11
  16. package/dist-cjs/commands/DisableProjectionCommand.js +10 -11
  17. package/dist-cjs/commands/EnableProjectionCommand.js +10 -11
  18. package/dist-cjs/commands/GetAnalysisSettingsCommand.js +10 -11
  19. package/dist-cjs/commands/GetCallCharacteristicsCommand.js +10 -11
  20. package/dist-cjs/commands/GetCallInsightsCommand.js +10 -11
  21. package/dist-cjs/commands/GetCallStateCommand.js +10 -11
  22. package/dist-cjs/commands/GetCallSummaryCommand.js +10 -11
  23. package/dist-cjs/commands/GetChatInsightsCommand.js +10 -11
  24. package/dist-cjs/commands/GetChatStateCommand.js +10 -11
  25. package/dist-cjs/commands/GetChatSummaryCommand.js +10 -11
  26. package/dist-cjs/commands/GetConferenceInsightsCommand.js +10 -11
  27. package/dist-cjs/commands/GetConferenceRecordingPresignedDownloadUrlCommand.js +10 -11
  28. package/dist-cjs/commands/GetConferenceStateCommand.js +10 -11
  29. package/dist-cjs/commands/GetConferenceSummaryCommand.js +10 -11
  30. package/dist-cjs/commands/GetConferenceTimeFramesCommand.js +10 -11
  31. package/dist-cjs/commands/GetDashboardCommand.js +10 -11
  32. package/dist-cjs/commands/GetPlaylistCommand.js +10 -11
  33. package/dist-cjs/commands/GetProjectionCommand.js +10 -11
  34. package/dist-cjs/commands/ListConversationsAggregationsCommand.js +10 -11
  35. package/dist-cjs/commands/ListConversationsCommand.js +10 -11
  36. package/dist-cjs/commands/ListConversationsInsightsAggregationsCommand.js +10 -11
  37. package/dist-cjs/commands/ListConversationsInsightsCommand.js +10 -11
  38. package/dist-cjs/commands/ListConversationsNestedAggregationsCommand.js +10 -11
  39. package/dist-cjs/commands/ListDashboardsCommand.js +10 -11
  40. package/dist-cjs/commands/ListFiltersCommand.js +10 -11
  41. package/dist-cjs/commands/ListPinnedDashboardsCommand.js +10 -11
  42. package/dist-cjs/commands/ListPlaylistItemsCommand.js +10 -11
  43. package/dist-cjs/commands/ListPlaylistsCommand.js +10 -11
  44. package/dist-cjs/commands/ListProjectionsCommand.js +10 -11
  45. package/dist-cjs/commands/ListWatchHistoryCommand.js +10 -11
  46. package/dist-cjs/commands/PauseProjectionCommand.js +10 -11
  47. package/dist-cjs/commands/PutAnalysisSettingsCommand.js +10 -11
  48. package/dist-cjs/commands/PutPlaylistItemCommand.js +10 -11
  49. package/dist-cjs/commands/QueryConversationsCountCommand.js +10 -11
  50. package/dist-cjs/commands/ScheduleCallSummaryGenerationCommand.js +10 -11
  51. package/dist-cjs/commands/ScheduleConferenceSummaryGenerationCommand.js +10 -11
  52. package/dist-cjs/commands/UpdateDashboardAccessCommand.js +10 -11
  53. package/dist-cjs/commands/UpdateDashboardCommand.js +10 -11
  54. package/dist-cjs/commands/UpdateFilterCommand.js +10 -11
  55. package/dist-cjs/commands/UpdatePinnedDashboardsCommand.js +10 -11
  56. package/dist-cjs/commands/UpdatePlaylistAccessCommand.js +10 -11
  57. package/dist-cjs/commands/UpdatePlaylistCommand.js +10 -11
  58. package/dist-cjs/commands/UpdateProjectionCommand.js +10 -11
  59. package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +10 -11
  60. package/dist-cjs/commands/WatchCommand.js +10 -11
  61. package/dist-cjs/commands/index.js +4 -4
  62. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  63. package/dist-cjs/endpoint/bdd.js +28 -0
  64. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  65. package/dist-cjs/index.js +4 -1
  66. package/dist-cjs/models/WdaInsightsServiceException.js +3 -3
  67. package/dist-cjs/models/enums.js +225 -0
  68. package/dist-cjs/models/errors.js +69 -0
  69. package/dist-cjs/models/models_0.js +0 -478
  70. package/dist-cjs/runtimeConfig.browser.js +11 -11
  71. package/dist-cjs/runtimeConfig.js +22 -18
  72. package/dist-cjs/runtimeConfig.shared.js +30 -10
  73. package/dist-cjs/runtimeExtensions.js +6 -5
  74. package/dist-cjs/schemas/schemas_0.js +2178 -0
  75. package/dist-es/WdaInsights.js +3 -3
  76. package/dist-es/WdaInsightsClient.js +30 -22
  77. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  78. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  79. package/dist-es/commands/CreateDashboardCommand.js +9 -10
  80. package/dist-es/commands/CreateFilterCommand.js +9 -10
  81. package/dist-es/commands/CreatePlaylistCommand.js +9 -10
  82. package/dist-es/commands/CreateProjectionCommand.js +9 -10
  83. package/dist-es/commands/CreateProjectionsCategoryCommand.js +9 -10
  84. package/dist-es/commands/DeleteDashboardCommand.js +9 -10
  85. package/dist-es/commands/DeleteFilterCommand.js +9 -10
  86. package/dist-es/commands/DeletePlaylistCommand.js +9 -10
  87. package/dist-es/commands/DeletePlaylistItemCommand.js +9 -10
  88. package/dist-es/commands/DeleteProjectionCommand.js +9 -10
  89. package/dist-es/commands/DeleteProjectionsCategoryCommand.js +9 -10
  90. package/dist-es/commands/DisableProjectionCommand.js +9 -10
  91. package/dist-es/commands/EnableProjectionCommand.js +9 -10
  92. package/dist-es/commands/GetAnalysisSettingsCommand.js +9 -10
  93. package/dist-es/commands/GetCallCharacteristicsCommand.js +9 -10
  94. package/dist-es/commands/GetCallInsightsCommand.js +9 -10
  95. package/dist-es/commands/GetCallStateCommand.js +9 -10
  96. package/dist-es/commands/GetCallSummaryCommand.js +9 -10
  97. package/dist-es/commands/GetChatInsightsCommand.js +9 -10
  98. package/dist-es/commands/GetChatStateCommand.js +9 -10
  99. package/dist-es/commands/GetChatSummaryCommand.js +9 -10
  100. package/dist-es/commands/GetConferenceInsightsCommand.js +9 -10
  101. package/dist-es/commands/GetConferenceRecordingPresignedDownloadUrlCommand.js +9 -10
  102. package/dist-es/commands/GetConferenceStateCommand.js +9 -10
  103. package/dist-es/commands/GetConferenceSummaryCommand.js +9 -10
  104. package/dist-es/commands/GetConferenceTimeFramesCommand.js +9 -10
  105. package/dist-es/commands/GetDashboardCommand.js +9 -10
  106. package/dist-es/commands/GetPlaylistCommand.js +9 -10
  107. package/dist-es/commands/GetProjectionCommand.js +9 -10
  108. package/dist-es/commands/ListConversationsAggregationsCommand.js +9 -10
  109. package/dist-es/commands/ListConversationsCommand.js +9 -10
  110. package/dist-es/commands/ListConversationsInsightsAggregationsCommand.js +9 -10
  111. package/dist-es/commands/ListConversationsInsightsCommand.js +9 -10
  112. package/dist-es/commands/ListConversationsNestedAggregationsCommand.js +9 -10
  113. package/dist-es/commands/ListDashboardsCommand.js +9 -10
  114. package/dist-es/commands/ListFiltersCommand.js +9 -10
  115. package/dist-es/commands/ListPinnedDashboardsCommand.js +9 -10
  116. package/dist-es/commands/ListPlaylistItemsCommand.js +9 -10
  117. package/dist-es/commands/ListPlaylistsCommand.js +9 -10
  118. package/dist-es/commands/ListProjectionsCommand.js +9 -10
  119. package/dist-es/commands/ListWatchHistoryCommand.js +9 -10
  120. package/dist-es/commands/PauseProjectionCommand.js +9 -10
  121. package/dist-es/commands/PutAnalysisSettingsCommand.js +9 -10
  122. package/dist-es/commands/PutPlaylistItemCommand.js +9 -10
  123. package/dist-es/commands/QueryConversationsCountCommand.js +9 -10
  124. package/dist-es/commands/ScheduleCallSummaryGenerationCommand.js +9 -10
  125. package/dist-es/commands/ScheduleConferenceSummaryGenerationCommand.js +9 -10
  126. package/dist-es/commands/UpdateDashboardAccessCommand.js +9 -10
  127. package/dist-es/commands/UpdateDashboardCommand.js +9 -10
  128. package/dist-es/commands/UpdateFilterCommand.js +9 -10
  129. package/dist-es/commands/UpdatePinnedDashboardsCommand.js +9 -10
  130. package/dist-es/commands/UpdatePlaylistAccessCommand.js +9 -10
  131. package/dist-es/commands/UpdatePlaylistCommand.js +9 -10
  132. package/dist-es/commands/UpdateProjectionCommand.js +9 -10
  133. package/dist-es/commands/UpdateProjectionsCategoryCommand.js +9 -10
  134. package/dist-es/commands/WatchCommand.js +9 -10
  135. package/dist-es/commands/index.js +4 -4
  136. package/dist-es/endpoint/EndpointParameters.js +12 -0
  137. package/dist-es/endpoint/bdd.js +25 -0
  138. package/dist-es/endpoint/endpointResolver.js +12 -0
  139. package/dist-es/index.js +4 -1
  140. package/dist-es/models/WdaInsightsServiceException.js +1 -1
  141. package/dist-es/models/enums.js +222 -0
  142. package/dist-es/models/errors.js +61 -0
  143. package/dist-es/models/models_0.js +1 -471
  144. package/dist-es/runtimeConfig.browser.js +7 -7
  145. package/dist-es/runtimeConfig.js +17 -13
  146. package/dist-es/runtimeConfig.shared.js +24 -4
  147. package/dist-es/runtimeExtensions.js +6 -5
  148. package/dist-es/schemas/schemas_0.js +2170 -0
  149. package/dist-types/WdaInsights.d.ts +57 -57
  150. package/dist-types/WdaInsightsClient.d.ts +86 -68
  151. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  152. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  153. package/dist-types/commands/CreateDashboardCommand.d.ts +11 -7
  154. package/dist-types/commands/CreateFilterCommand.d.ts +11 -7
  155. package/dist-types/commands/CreatePlaylistCommand.d.ts +11 -7
  156. package/dist-types/commands/CreateProjectionCommand.d.ts +11 -7
  157. package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +12 -8
  158. package/dist-types/commands/DeleteDashboardCommand.d.ts +11 -7
  159. package/dist-types/commands/DeleteFilterCommand.d.ts +11 -7
  160. package/dist-types/commands/DeletePlaylistCommand.d.ts +11 -7
  161. package/dist-types/commands/DeletePlaylistItemCommand.d.ts +11 -7
  162. package/dist-types/commands/DeleteProjectionCommand.d.ts +11 -7
  163. package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +12 -8
  164. package/dist-types/commands/DisableProjectionCommand.d.ts +11 -7
  165. package/dist-types/commands/EnableProjectionCommand.d.ts +11 -7
  166. package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +11 -7
  167. package/dist-types/commands/GetCallCharacteristicsCommand.d.ts +11 -7
  168. package/dist-types/commands/GetCallInsightsCommand.d.ts +11 -7
  169. package/dist-types/commands/GetCallStateCommand.d.ts +11 -7
  170. package/dist-types/commands/GetCallSummaryCommand.d.ts +11 -7
  171. package/dist-types/commands/GetChatInsightsCommand.d.ts +11 -7
  172. package/dist-types/commands/GetChatStateCommand.d.ts +11 -7
  173. package/dist-types/commands/GetChatSummaryCommand.d.ts +11 -7
  174. package/dist-types/commands/GetConferenceInsightsCommand.d.ts +11 -7
  175. package/dist-types/commands/GetConferenceRecordingPresignedDownloadUrlCommand.d.ts +11 -7
  176. package/dist-types/commands/GetConferenceStateCommand.d.ts +11 -7
  177. package/dist-types/commands/GetConferenceSummaryCommand.d.ts +11 -7
  178. package/dist-types/commands/GetConferenceTimeFramesCommand.d.ts +11 -7
  179. package/dist-types/commands/GetDashboardCommand.d.ts +11 -7
  180. package/dist-types/commands/GetPlaylistCommand.d.ts +11 -7
  181. package/dist-types/commands/GetProjectionCommand.d.ts +11 -7
  182. package/dist-types/commands/ListConversationsAggregationsCommand.d.ts +11 -7
  183. package/dist-types/commands/ListConversationsCommand.d.ts +11 -7
  184. package/dist-types/commands/ListConversationsInsightsAggregationsCommand.d.ts +12 -8
  185. package/dist-types/commands/ListConversationsInsightsCommand.d.ts +12 -8
  186. package/dist-types/commands/ListConversationsNestedAggregationsCommand.d.ts +11 -7
  187. package/dist-types/commands/ListDashboardsCommand.d.ts +11 -7
  188. package/dist-types/commands/ListFiltersCommand.d.ts +11 -7
  189. package/dist-types/commands/ListPinnedDashboardsCommand.d.ts +11 -7
  190. package/dist-types/commands/ListPlaylistItemsCommand.d.ts +11 -7
  191. package/dist-types/commands/ListPlaylistsCommand.d.ts +11 -7
  192. package/dist-types/commands/ListProjectionsCommand.d.ts +11 -7
  193. package/dist-types/commands/ListWatchHistoryCommand.d.ts +11 -7
  194. package/dist-types/commands/PauseProjectionCommand.d.ts +11 -7
  195. package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +11 -7
  196. package/dist-types/commands/PutPlaylistItemCommand.d.ts +11 -7
  197. package/dist-types/commands/QueryConversationsCountCommand.d.ts +11 -7
  198. package/dist-types/commands/ScheduleCallSummaryGenerationCommand.d.ts +12 -8
  199. package/dist-types/commands/ScheduleConferenceSummaryGenerationCommand.d.ts +12 -8
  200. package/dist-types/commands/UpdateDashboardAccessCommand.d.ts +11 -7
  201. package/dist-types/commands/UpdateDashboardCommand.d.ts +11 -7
  202. package/dist-types/commands/UpdateFilterCommand.d.ts +11 -7
  203. package/dist-types/commands/UpdatePinnedDashboardsCommand.d.ts +11 -7
  204. package/dist-types/commands/UpdatePlaylistAccessCommand.d.ts +11 -7
  205. package/dist-types/commands/UpdatePlaylistCommand.d.ts +11 -7
  206. package/dist-types/commands/UpdateProjectionCommand.d.ts +11 -7
  207. package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +12 -8
  208. package/dist-types/commands/WatchCommand.d.ts +11 -7
  209. package/dist-types/commands/index.d.ts +4 -4
  210. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  211. package/dist-types/endpoint/bdd.d.ts +2 -0
  212. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  213. package/dist-types/extensionConfiguration.d.ts +4 -3
  214. package/dist-types/index.d.ts +5 -1
  215. package/dist-types/models/WdaInsightsServiceException.d.ts +1 -1
  216. package/dist-types/models/enums.d.ts +541 -0
  217. package/dist-types/models/errors.d.ts +57 -0
  218. package/dist-types/models/models_0.d.ts +172 -734
  219. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  220. package/dist-types/runtimeConfig.d.ts +34 -15
  221. package/dist-types/runtimeConfig.native.d.ts +36 -17
  222. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  223. package/dist-types/runtimeExtensions.d.ts +1 -1
  224. package/dist-types/schemas/schemas_0.d.ts +299 -0
  225. package/package.json +14 -40
  226. package/dist-cjs/models/index.js +0 -4
  227. package/dist-cjs/protocols/Aws_restJson1.js +0 -2406
  228. package/dist-es/models/index.js +0 -1
  229. package/dist-es/protocols/Aws_restJson1.js +0 -2289
  230. package/dist-types/models/index.d.ts +0 -1
  231. package/dist-types/protocols/Aws_restJson1.d.ts +0 -506
@@ -0,0 +1,541 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const CallDirection: {
6
+ readonly INBOUND: "INBOUND";
7
+ readonly INTERNAL: "INTERNAL";
8
+ readonly OUTBOUND: "OUTBOUND";
9
+ readonly UNDEFINED: "UNDEFINED";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type CallDirection = (typeof CallDirection)[keyof typeof CallDirection];
15
+ /**
16
+ * @public
17
+ * @enum
18
+ */
19
+ export declare const ConversationStatus: {
20
+ readonly COMPLETED: "COMPLETED";
21
+ readonly MISSED: "MISSED";
22
+ };
23
+ /**
24
+ * @public
25
+ */
26
+ export type ConversationStatus = (typeof ConversationStatus)[keyof typeof ConversationStatus];
27
+ /**
28
+ * @public
29
+ * @enum
30
+ */
31
+ export declare const License: {
32
+ readonly UC: "uc";
33
+ readonly XBEES: "x-bees";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type License = (typeof License)[keyof typeof License];
39
+ /**
40
+ * @public
41
+ * @enum
42
+ */
43
+ export declare const RecordType: {
44
+ readonly CALL: "call";
45
+ readonly CALL_ANNOTATIONS: "call_annotations";
46
+ readonly CALL_TRANSCRIPTION: "call_transcription";
47
+ readonly CHAT: "chat";
48
+ readonly CHAT_ANNOTATIONS: "chat_annotations";
49
+ readonly CHAT_TRANSCRIPTION: "chat_transcription";
50
+ readonly CONFERENCE: "conference";
51
+ readonly CONFERENCE_ANNOTATIONS: "conference_annotations";
52
+ readonly CONFERENCE_TRANSCRIPTION: "conference_transcription";
53
+ };
54
+ /**
55
+ * @public
56
+ */
57
+ export type RecordType = (typeof RecordType)[keyof typeof RecordType];
58
+ /**
59
+ * @public
60
+ * @enum
61
+ */
62
+ export declare const AnnotationsStatus: {
63
+ readonly AVAILABLE: "AVAILABLE";
64
+ readonly UNAVAILABLE: "UNAVAILABLE";
65
+ };
66
+ /**
67
+ * @public
68
+ */
69
+ export type AnnotationsStatus = (typeof AnnotationsStatus)[keyof typeof AnnotationsStatus];
70
+ /**
71
+ * @public
72
+ * @enum
73
+ */
74
+ export declare const CallRecordOwner: {
75
+ readonly CALLEE: "callee";
76
+ readonly CALLER: "caller";
77
+ readonly SYSTEM: "system";
78
+ };
79
+ /**
80
+ * @public
81
+ */
82
+ export type CallRecordOwner = (typeof CallRecordOwner)[keyof typeof CallRecordOwner];
83
+ /**
84
+ * @public
85
+ * @enum
86
+ */
87
+ export declare const CallFlowAttachmentStatus: {
88
+ readonly ERROR: "error";
89
+ readonly OK: "ok";
90
+ };
91
+ /**
92
+ * @public
93
+ */
94
+ export type CallFlowAttachmentStatus = (typeof CallFlowAttachmentStatus)[keyof typeof CallFlowAttachmentStatus];
95
+ /**
96
+ * @public
97
+ * @enum
98
+ */
99
+ export declare const CallRecordPauseReason: {
100
+ readonly HOLD: "hold";
101
+ readonly PAUSE: "pause";
102
+ };
103
+ /**
104
+ * @public
105
+ */
106
+ export type CallRecordPauseReason = (typeof CallRecordPauseReason)[keyof typeof CallRecordPauseReason];
107
+ /**
108
+ * @public
109
+ * @enum
110
+ */
111
+ export declare const CallFlowAttachmentType: {
112
+ readonly FAX: "FAX";
113
+ readonly VOICEMAIL: "VOICEMAIL";
114
+ };
115
+ /**
116
+ * @public
117
+ */
118
+ export type CallFlowAttachmentType = (typeof CallFlowAttachmentType)[keyof typeof CallFlowAttachmentType];
119
+ /**
120
+ * @public
121
+ * @enum
122
+ */
123
+ export declare const CallParticipantRole: {
124
+ readonly AGENT: "AGENT";
125
+ readonly CLIENT: "CLIENT";
126
+ };
127
+ /**
128
+ * @public
129
+ */
130
+ export type CallParticipantRole = (typeof CallParticipantRole)[keyof typeof CallParticipantRole];
131
+ /**
132
+ * @public
133
+ * @enum
134
+ */
135
+ export declare const CallParticipantType: {
136
+ readonly LOCAL: "LOCAL";
137
+ readonly REMOTE: "REMOTE";
138
+ };
139
+ /**
140
+ * @public
141
+ */
142
+ export type CallParticipantType = (typeof CallParticipantType)[keyof typeof CallParticipantType];
143
+ /**
144
+ * @public
145
+ * @enum
146
+ */
147
+ export declare const CallDevice: {
148
+ readonly COLLABORATION7_ANDROID: "COLLABORATION7_ANDROID";
149
+ readonly COLLABORATION7_IOS: "COLLABORATION7_IOS";
150
+ readonly COLLABORATION7_WEB: "COLLABORATION7_WEB";
151
+ readonly COLLABORATION_ANDROID: "COLLABORATION_ANDROID";
152
+ readonly COLLABORATION_IOS: "COLLABORATION_IOS";
153
+ readonly COLLABORATION_WEB: "COLLABORATION_WEB";
154
+ readonly TEAMS4WILDIX: "TEAMS4WILDIX";
155
+ readonly UNKNOWN: "UNKNOWN";
156
+ readonly VOICEBOT: "VOICEBOT";
157
+ readonly WILDIX_DEVICE: "WILDIX_DEVICE";
158
+ readonly WILDIX_PHONE: "WILDIX_PHONE";
159
+ readonly XBEES_ANDROID: "XBEES_ANDROID";
160
+ readonly XBEES_IOS: "XBEES_IOS";
161
+ readonly XBEES_WEB: "XBEES_WEB";
162
+ readonly XHOPPERS_ANDROID: "XHOPPERS_ANDROID";
163
+ readonly XHOPPERS_IOS: "XHOPPERS_IOS";
164
+ readonly XHOPPERS_WEB: "XHOPPERS_WEB";
165
+ };
166
+ /**
167
+ * @public
168
+ */
169
+ export type CallDevice = (typeof CallDevice)[keyof typeof CallDevice];
170
+ /**
171
+ * @public
172
+ * @enum
173
+ */
174
+ export declare const CallFlowTranscriptionStatus: {
175
+ readonly AVAILABLE: "AVAILABLE";
176
+ readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
177
+ readonly UNAVAILABLE: "UNAVAILABLE";
178
+ };
179
+ /**
180
+ * @public
181
+ */
182
+ export type CallFlowTranscriptionStatus = (typeof CallFlowTranscriptionStatus)[keyof typeof CallFlowTranscriptionStatus];
183
+ /**
184
+ * @public
185
+ * @enum
186
+ */
187
+ export declare const ChannelAccess: {
188
+ readonly PRIVATE: "private";
189
+ readonly PUBLIC: "public";
190
+ };
191
+ /**
192
+ * @public
193
+ */
194
+ export type ChannelAccess = (typeof ChannelAccess)[keyof typeof ChannelAccess];
195
+ /**
196
+ * @public
197
+ * @enum
198
+ */
199
+ export declare const ChannelType: {
200
+ readonly DIRECT: "direct";
201
+ readonly GROUP: "group";
202
+ };
203
+ /**
204
+ * @public
205
+ */
206
+ export type ChannelType = (typeof ChannelType)[keyof typeof ChannelType];
207
+ /**
208
+ * @public
209
+ * @enum
210
+ */
211
+ export declare const ChannelContextEventAttendeeStatus: {
212
+ readonly ACCEPTED: "accepted";
213
+ readonly DECLINED: "declined";
214
+ readonly NONE: "none";
215
+ readonly TENTATIVE: "tentative";
216
+ };
217
+ /**
218
+ * @public
219
+ */
220
+ export type ChannelContextEventAttendeeStatus = (typeof ChannelContextEventAttendeeStatus)[keyof typeof ChannelContextEventAttendeeStatus];
221
+ /**
222
+ * @public
223
+ * @enum
224
+ */
225
+ export declare const ChannelContextSource: {
226
+ readonly KITE: "kite";
227
+ };
228
+ /**
229
+ * @public
230
+ */
231
+ export type ChannelContextSource = (typeof ChannelContextSource)[keyof typeof ChannelContextSource];
232
+ /**
233
+ * @public
234
+ * @enum
235
+ */
236
+ export declare const ChannelWhatsAppStatus: {
237
+ readonly CHANNEL_CLOSED: "24h_channel_closed";
238
+ };
239
+ /**
240
+ * @public
241
+ */
242
+ export type ChannelWhatsAppStatus = (typeof ChannelWhatsAppStatus)[keyof typeof ChannelWhatsAppStatus];
243
+ /**
244
+ * @public
245
+ * @enum
246
+ */
247
+ export declare const ChatDirection: {
248
+ readonly INBOUND: "INBOUND";
249
+ readonly INTERNAL: "INTERNAL";
250
+ readonly OUTBOUND: "OUTBOUND";
251
+ };
252
+ /**
253
+ * @public
254
+ */
255
+ export type ChatDirection = (typeof ChatDirection)[keyof typeof ChatDirection];
256
+ /**
257
+ * @public
258
+ * @enum
259
+ */
260
+ export declare const ChatParticipantRole: {
261
+ readonly AGENT: "AGENT";
262
+ readonly CLIENT: "CLIENT";
263
+ };
264
+ /**
265
+ * @public
266
+ */
267
+ export type ChatParticipantRole = (typeof ChatParticipantRole)[keyof typeof ChatParticipantRole];
268
+ /**
269
+ * @public
270
+ * @enum
271
+ */
272
+ export declare const ChatParticipantType: {
273
+ readonly LOCAL: "LOCAL";
274
+ readonly REMOTE: "REMOTE";
275
+ };
276
+ /**
277
+ * @public
278
+ */
279
+ export type ChatParticipantType = (typeof ChatParticipantType)[keyof typeof ChatParticipantType];
280
+ /**
281
+ * @public
282
+ * @enum
283
+ */
284
+ export declare const ChatStatus: {
285
+ readonly COMPLETED: "COMPLETED";
286
+ readonly MISSED: "MISSED";
287
+ readonly WAITFIRSTREPLY: "WAITFIRSTREPLY";
288
+ readonly WAITREPLYFROMAGENT: "WAITREPLYFROMAGENT";
289
+ readonly WAITREPLYFROMGUEST: "WAITREPLYFROMGUEST";
290
+ };
291
+ /**
292
+ * @public
293
+ */
294
+ export type ChatStatus = (typeof ChatStatus)[keyof typeof ChatStatus];
295
+ /**
296
+ * @public
297
+ * @enum
298
+ */
299
+ export declare const ChatTag: {
300
+ readonly SMS: "sms";
301
+ readonly TELEPHONY: "telephony";
302
+ readonly WHATSAPP: "whatsapp";
303
+ };
304
+ /**
305
+ * @public
306
+ */
307
+ export type ChatTag = (typeof ChatTag)[keyof typeof ChatTag];
308
+ /**
309
+ * @public
310
+ * @enum
311
+ */
312
+ export declare const ConferenceDirection: {
313
+ readonly INBOUND: "INBOUND";
314
+ readonly INTERNAL: "INTERNAL";
315
+ readonly OUTBOUND: "OUTBOUND";
316
+ };
317
+ /**
318
+ * @public
319
+ */
320
+ export type ConferenceDirection = (typeof ConferenceDirection)[keyof typeof ConferenceDirection];
321
+ /**
322
+ * @public
323
+ * @enum
324
+ */
325
+ export declare const PbxLicenseType: {
326
+ readonly BASIC: "basic";
327
+ readonly BUSINESS: "business";
328
+ readonly ESSENTIAL: "essential";
329
+ readonly PREMIUM: "premium";
330
+ readonly WIZYCONF: "wizyconf";
331
+ };
332
+ /**
333
+ * @public
334
+ */
335
+ export type PbxLicenseType = (typeof PbxLicenseType)[keyof typeof PbxLicenseType];
336
+ /**
337
+ * @public
338
+ * @enum
339
+ */
340
+ export declare const ConferenceParticipantRole: {
341
+ readonly AGENT: "AGENT";
342
+ readonly CLIENT: "CLIENT";
343
+ };
344
+ /**
345
+ * @public
346
+ */
347
+ export type ConferenceParticipantRole = (typeof ConferenceParticipantRole)[keyof typeof ConferenceParticipantRole];
348
+ /**
349
+ * @public
350
+ * @enum
351
+ */
352
+ export declare const ConferenceParticipantType: {
353
+ readonly EXTERNAL: "EXTERNAL";
354
+ readonly EXTERNAL_DIAL_IN: "EXTERNAL_DIAL_IN";
355
+ readonly PBX: "PBX";
356
+ readonly PBX_SIP: "PBX_SIP";
357
+ readonly XBS: "XBS";
358
+ };
359
+ /**
360
+ * @public
361
+ */
362
+ export type ConferenceParticipantType = (typeof ConferenceParticipantType)[keyof typeof ConferenceParticipantType];
363
+ /**
364
+ * @public
365
+ * @enum
366
+ */
367
+ export declare const ConferenceTranscriptionStatus: {
368
+ readonly AVAILABLE: "AVAILABLE";
369
+ readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
370
+ readonly UNAVAILABLE: "UNAVAILABLE";
371
+ };
372
+ /**
373
+ * @public
374
+ */
375
+ export type ConferenceTranscriptionStatus = (typeof ConferenceTranscriptionStatus)[keyof typeof ConferenceTranscriptionStatus];
376
+ /**
377
+ * @public
378
+ * @enum
379
+ */
380
+ export declare const ListConversationsFilterPredefinedDateType: {
381
+ readonly LAST_30_DAYS: "LAST_30_DAYS";
382
+ readonly PREVIOUS_MONTH: "PREVIOUS_MONTH";
383
+ readonly PREVIOUS_WEEK: "PREVIOUS_WEEK";
384
+ readonly THIS_MONTH: "THIS_MONTH";
385
+ readonly THIS_QUARTER: "THIS_QUARTER";
386
+ readonly THIS_WEEK: "THIS_WEEK";
387
+ readonly TODAY: "TODAY";
388
+ readonly YESTERDAY: "YESTERDAY";
389
+ };
390
+ /**
391
+ * @public
392
+ */
393
+ export type ListConversationsFilterPredefinedDateType = (typeof ListConversationsFilterPredefinedDateType)[keyof typeof ListConversationsFilterPredefinedDateType];
394
+ /**
395
+ * @public
396
+ * @enum
397
+ */
398
+ export declare const AggregationDateInterval: {
399
+ readonly DAY: "day";
400
+ readonly HOUR: "hour";
401
+ readonly MINUTE: "minute";
402
+ readonly MONTH: "month";
403
+ readonly WEEK: "week";
404
+ };
405
+ /**
406
+ * @public
407
+ */
408
+ export type AggregationDateInterval = (typeof AggregationDateInterval)[keyof typeof AggregationDateInterval];
409
+ /**
410
+ * @public
411
+ * @enum
412
+ */
413
+ export declare const DashboardPermission: {
414
+ readonly EDIT: "edit";
415
+ readonly VIEW: "view";
416
+ };
417
+ /**
418
+ * @public
419
+ */
420
+ export type DashboardPermission = (typeof DashboardPermission)[keyof typeof DashboardPermission];
421
+ /**
422
+ * @public
423
+ * @enum
424
+ */
425
+ export declare const DashboardVisibility: {
426
+ readonly EXPLICIT: "explicit";
427
+ readonly ORGANIZATION: "organization";
428
+ };
429
+ /**
430
+ * @public
431
+ */
432
+ export type DashboardVisibility = (typeof DashboardVisibility)[keyof typeof DashboardVisibility];
433
+ /**
434
+ * @public
435
+ * @enum
436
+ */
437
+ export declare const PlaylistPermission: {
438
+ readonly EDIT: "edit";
439
+ readonly VIEW: "view";
440
+ };
441
+ /**
442
+ * @public
443
+ */
444
+ export type PlaylistPermission = (typeof PlaylistPermission)[keyof typeof PlaylistPermission];
445
+ /**
446
+ * @public
447
+ * @enum
448
+ */
449
+ export declare const PlaylistVisibility: {
450
+ readonly EXPLICIT: "explicit";
451
+ readonly ORGANIZATION: "organization";
452
+ };
453
+ /**
454
+ * @public
455
+ */
456
+ export type PlaylistVisibility = (typeof PlaylistVisibility)[keyof typeof PlaylistVisibility];
457
+ /**
458
+ * @public
459
+ * @enum
460
+ */
461
+ export declare const ProjectionEntityConditionValue: {
462
+ readonly CALL: "call";
463
+ readonly CHAT: "chat";
464
+ readonly CONFERENCE: "conference";
465
+ };
466
+ /**
467
+ * @public
468
+ */
469
+ export type ProjectionEntityConditionValue = (typeof ProjectionEntityConditionValue)[keyof typeof ProjectionEntityConditionValue];
470
+ /**
471
+ * @public
472
+ * @enum
473
+ */
474
+ export declare const ProjectionStatus: {
475
+ readonly DISABLED: "DISABLED";
476
+ readonly ENABLED: "ENABLED";
477
+ readonly PAUSED: "PAUSED";
478
+ };
479
+ /**
480
+ * @public
481
+ */
482
+ export type ProjectionStatus = (typeof ProjectionStatus)[keyof typeof ProjectionStatus];
483
+ /**
484
+ * @public
485
+ * @enum
486
+ */
487
+ export declare const InsightsStatus: {
488
+ readonly FAILED: "FAILED";
489
+ readonly NONE: "NONE";
490
+ readonly SCHEDULED: "SCHEDULED";
491
+ readonly STARTED: "STARTED";
492
+ readonly SUCCEEDED: "SUCCEEDED";
493
+ readonly UNAVAILABLE: "UNAVAILABLE";
494
+ };
495
+ /**
496
+ * @public
497
+ */
498
+ export type InsightsStatus = (typeof InsightsStatus)[keyof typeof InsightsStatus];
499
+ /**
500
+ * @public
501
+ * @enum
502
+ */
503
+ export declare const InsightsReason: {
504
+ readonly CONDITIONS_NOT_MATCH: "CONDITIONS_NOT_MATCH";
505
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
506
+ readonly TRANSCRIPTION_TOO_SMALL: "TRANSCRIPTION_TOO_SMALL";
507
+ };
508
+ /**
509
+ * @public
510
+ */
511
+ export type InsightsReason = (typeof InsightsReason)[keyof typeof InsightsReason];
512
+ /**
513
+ * @public
514
+ * @enum
515
+ */
516
+ export declare const ConversationFileCategory: {
517
+ readonly GENERAL: "channels";
518
+ readonly RECORDING: "recordings";
519
+ readonly WIZY_RECORDING: "wizyconfRecordings";
520
+ };
521
+ /**
522
+ * @public
523
+ */
524
+ export type ConversationFileCategory = (typeof ConversationFileCategory)[keyof typeof ConversationFileCategory];
525
+ export declare enum DownloadStrategy {
526
+ DEFAULT = 0,
527
+ DOWNLOAD = 1
528
+ }
529
+ /**
530
+ * @public
531
+ * @enum
532
+ */
533
+ export declare const PlaylistItemStatus: {
534
+ readonly AVAILABLE: "AVAILABLE";
535
+ readonly NO_ACCESS: "NO_ACCESS";
536
+ readonly UNAVAILABLE: "UNAVAILABLE";
537
+ };
538
+ /**
539
+ * @public
540
+ */
541
+ export type PlaylistItemStatus = (typeof PlaylistItemStatus)[keyof typeof PlaylistItemStatus];
@@ -0,0 +1,57 @@
1
+ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
2
+ import { WdaInsightsServiceException as __BaseException } from "./WdaInsightsServiceException";
3
+ /**
4
+ * @public
5
+ */
6
+ export declare class ForbiddenException extends __BaseException {
7
+ readonly name: "ForbiddenException";
8
+ readonly $fault: "client";
9
+ /**
10
+ * @internal
11
+ */
12
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
13
+ }
14
+ /**
15
+ * @public
16
+ */
17
+ export declare class NotFoundException extends __BaseException {
18
+ readonly name: "NotFoundException";
19
+ readonly $fault: "client";
20
+ /**
21
+ * @internal
22
+ */
23
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
24
+ }
25
+ /**
26
+ * @public
27
+ */
28
+ export declare class ValidationException extends __BaseException {
29
+ readonly name: "ValidationException";
30
+ readonly $fault: "client";
31
+ /**
32
+ * @internal
33
+ */
34
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
35
+ }
36
+ /**
37
+ * @public
38
+ */
39
+ export declare class FilterNotFoundException extends __BaseException {
40
+ readonly name: "FilterNotFoundException";
41
+ readonly $fault: "client";
42
+ /**
43
+ * @internal
44
+ */
45
+ constructor(opts: __ExceptionOptionType<FilterNotFoundException, __BaseException>);
46
+ }
47
+ /**
48
+ * @public
49
+ */
50
+ export declare class FileNotFoundException extends __BaseException {
51
+ readonly name: "FileNotFoundException";
52
+ readonly $fault: "client";
53
+ /**
54
+ * @internal
55
+ */
56
+ constructor(opts: __ExceptionOptionType<FileNotFoundException, __BaseException>);
57
+ }