@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
@@ -1,108 +1,5 @@
1
- import { WdaInsightsServiceException as __BaseException } from "./WdaInsightsServiceException";
2
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
3
- import { DocumentType as __DocumentType } from "@smithy/types";
4
- /**
5
- * @public
6
- */
7
- export declare class ForbiddenException extends __BaseException {
8
- readonly name: "ForbiddenException";
9
- readonly $fault: "client";
10
- /**
11
- * @internal
12
- */
13
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
14
- }
15
- /**
16
- * @public
17
- */
18
- export declare class NotFoundException extends __BaseException {
19
- readonly name: "NotFoundException";
20
- readonly $fault: "client";
21
- /**
22
- * @internal
23
- */
24
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
25
- }
26
- /**
27
- * @public
28
- */
29
- export declare class ValidationException extends __BaseException {
30
- readonly name: "ValidationException";
31
- readonly $fault: "client";
32
- /**
33
- * @internal
34
- */
35
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
36
- }
37
- /**
38
- * @public
39
- * @enum
40
- */
41
- export declare const CallDirection: {
42
- readonly INBOUND: "INBOUND";
43
- readonly INTERNAL: "INTERNAL";
44
- readonly OUTBOUND: "OUTBOUND";
45
- readonly UNDEFINED: "UNDEFINED";
46
- };
47
- /**
48
- * @public
49
- */
50
- export type CallDirection = typeof CallDirection[keyof typeof CallDirection];
51
- /**
52
- * @public
53
- * @enum
54
- */
55
- export declare const ConversationStatus: {
56
- readonly COMPLETED: "COMPLETED";
57
- readonly MISSED: "MISSED";
58
- };
59
- /**
60
- * @public
61
- */
62
- export type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationStatus];
63
- /**
64
- * @public
65
- * @enum
66
- */
67
- export declare const License: {
68
- readonly UC: "uc";
69
- readonly XBEES: "x-bees";
70
- };
71
- /**
72
- * @public
73
- */
74
- export type License = typeof License[keyof typeof License];
75
- /**
76
- * @public
77
- * @enum
78
- */
79
- export declare const RecordType: {
80
- readonly CALL: "call";
81
- readonly CALL_ANNOTATIONS: "call_annotations";
82
- readonly CALL_TRANSCRIPTION: "call_transcription";
83
- readonly CHAT: "chat";
84
- readonly CHAT_ANNOTATIONS: "chat_annotations";
85
- readonly CHAT_TRANSCRIPTION: "chat_transcription";
86
- readonly CONFERENCE: "conference";
87
- readonly CONFERENCE_ANNOTATIONS: "conference_annotations";
88
- readonly CONFERENCE_TRANSCRIPTION: "conference_transcription";
89
- };
90
- /**
91
- * @public
92
- */
93
- export type RecordType = typeof RecordType[keyof typeof RecordType];
94
- /**
95
- * @public
96
- * @enum
97
- */
98
- export declare const AnnotationsStatus: {
99
- readonly AVAILABLE: "AVAILABLE";
100
- readonly UNAVAILABLE: "UNAVAILABLE";
101
- };
102
- /**
103
- * @public
104
- */
105
- export type AnnotationsStatus = typeof AnnotationsStatus[keyof typeof AnnotationsStatus];
1
+ import type { DocumentType as __DocumentType } from "@smithy/types";
2
+ import type { AggregationDateInterval, AnnotationsStatus, CallDevice, CallDirection, CallFlowAttachmentStatus, CallFlowAttachmentType, CallFlowTranscriptionStatus, CallParticipantRole, CallParticipantType, CallRecordOwner, CallRecordPauseReason, ChannelAccess, ChannelContextEventAttendeeStatus, ChannelContextSource, ChannelType, ChannelWhatsAppStatus, ChatDirection, ChatParticipantRole, ChatParticipantType, ChatStatus, ChatTag, ConferenceDirection, ConferenceParticipantRole, ConferenceParticipantType, ConferenceTranscriptionStatus, ConversationFileCategory, ConversationStatus, DashboardPermission, DashboardVisibility, DownloadStrategy, InsightsReason, InsightsStatus, License, ListConversationsFilterPredefinedDateType, PbxLicenseType, PlaylistItemStatus, PlaylistPermission, PlaylistVisibility, ProjectionEntityConditionValue, ProjectionStatus, RecordType } from "./enums";
106
3
  /**
107
4
  * @public
108
5
  */
@@ -116,31 +13,6 @@ export interface CallFlowAttachmentDestination {
116
13
  groupId?: string | undefined;
117
14
  groupName?: string | undefined;
118
15
  }
119
- /**
120
- * @public
121
- * @enum
122
- */
123
- export declare const CallRecordOwner: {
124
- readonly CALLEE: "callee";
125
- readonly CALLER: "caller";
126
- readonly SYSTEM: "system";
127
- };
128
- /**
129
- * @public
130
- */
131
- export type CallRecordOwner = typeof CallRecordOwner[keyof typeof CallRecordOwner];
132
- /**
133
- * @public
134
- * @enum
135
- */
136
- export declare const CallFlowAttachmentStatus: {
137
- readonly ERROR: "error";
138
- readonly OK: "ok";
139
- };
140
- /**
141
- * @public
142
- */
143
- export type CallFlowAttachmentStatus = typeof CallFlowAttachmentStatus[keyof typeof CallFlowAttachmentStatus];
144
16
  /**
145
17
  * @public
146
18
  */
@@ -151,7 +23,7 @@ export interface CallFlowFax {
151
23
  * @public
152
24
  */
153
25
  status?: CallFlowAttachmentStatus | undefined;
154
- destinations?: (CallFlowAttachmentDestination)[] | undefined;
26
+ destinations?: CallFlowAttachmentDestination[] | undefined;
155
27
  owner?: CallRecordOwner | undefined;
156
28
  /**
157
29
  * Text with the reason for the error in case of unsuccessful fax delivery
@@ -159,18 +31,6 @@ export interface CallFlowFax {
159
31
  */
160
32
  error?: string | undefined;
161
33
  }
162
- /**
163
- * @public
164
- * @enum
165
- */
166
- export declare const CallRecordPauseReason: {
167
- readonly HOLD: "hold";
168
- readonly PAUSE: "pause";
169
- };
170
- /**
171
- * @public
172
- */
173
- export type CallRecordPauseReason = typeof CallRecordPauseReason[keyof typeof CallRecordPauseReason];
174
34
  /**
175
35
  * @public
176
36
  */
@@ -188,14 +48,14 @@ export interface CallFlowRecording {
188
48
  end: number;
189
49
  owner: CallRecordOwner;
190
50
  url: string;
191
- pauses: (CallRecordPause)[];
51
+ pauses: CallRecordPause[];
192
52
  }
193
53
  /**
194
54
  * @public
195
55
  */
196
56
  export interface CallFlowVoicemail {
197
57
  url: string;
198
- destinations?: (CallFlowAttachmentDestination)[] | undefined;
58
+ destinations?: CallFlowAttachmentDestination[] | undefined;
199
59
  owner?: CallRecordOwner | undefined;
200
60
  }
201
61
  /**
@@ -233,77 +93,17 @@ export declare namespace CallFlowAttachment {
233
93
  voicemail?: never;
234
94
  $unknown: [string, any];
235
95
  }
96
+ /**
97
+ * @deprecated unused in schema-serde mode.
98
+ *
99
+ */
236
100
  interface Visitor<T> {
237
101
  recording: (value: CallFlowRecording) => T;
238
102
  fax: (value: CallFlowFax) => T;
239
103
  voicemail: (value: CallFlowVoicemail) => T;
240
104
  _: (name: string, value: any) => T;
241
105
  }
242
- const visit: <T>(value: CallFlowAttachment, visitor: Visitor<T>) => T;
243
106
  }
244
- /**
245
- * @public
246
- * @enum
247
- */
248
- export declare const CallFlowAttachmentType: {
249
- readonly FAX: "FAX";
250
- readonly VOICEMAIL: "VOICEMAIL";
251
- };
252
- /**
253
- * @public
254
- */
255
- export type CallFlowAttachmentType = typeof CallFlowAttachmentType[keyof typeof CallFlowAttachmentType];
256
- /**
257
- * @public
258
- * @enum
259
- */
260
- export declare const CallParticipantRole: {
261
- readonly AGENT: "AGENT";
262
- readonly CLIENT: "CLIENT";
263
- };
264
- /**
265
- * @public
266
- */
267
- export type CallParticipantRole = typeof CallParticipantRole[keyof typeof CallParticipantRole];
268
- /**
269
- * @public
270
- * @enum
271
- */
272
- export declare const CallParticipantType: {
273
- readonly LOCAL: "LOCAL";
274
- readonly REMOTE: "REMOTE";
275
- };
276
- /**
277
- * @public
278
- */
279
- export type CallParticipantType = typeof CallParticipantType[keyof typeof CallParticipantType];
280
- /**
281
- * @public
282
- * @enum
283
- */
284
- export declare const CallDevice: {
285
- readonly COLLABORATION7_ANDROID: "COLLABORATION7_ANDROID";
286
- readonly COLLABORATION7_IOS: "COLLABORATION7_IOS";
287
- readonly COLLABORATION7_WEB: "COLLABORATION7_WEB";
288
- readonly COLLABORATION_ANDROID: "COLLABORATION_ANDROID";
289
- readonly COLLABORATION_IOS: "COLLABORATION_IOS";
290
- readonly COLLABORATION_WEB: "COLLABORATION_WEB";
291
- readonly TEAMS4WILDIX: "TEAMS4WILDIX";
292
- readonly UNKNOWN: "UNKNOWN";
293
- readonly VOICEBOT: "VOICEBOT";
294
- readonly WILDIX_DEVICE: "WILDIX_DEVICE";
295
- readonly WILDIX_PHONE: "WILDIX_PHONE";
296
- readonly XBEES_ANDROID: "XBEES_ANDROID";
297
- readonly XBEES_IOS: "XBEES_IOS";
298
- readonly XBEES_WEB: "XBEES_WEB";
299
- readonly XHOPPERS_ANDROID: "XHOPPERS_ANDROID";
300
- readonly XHOPPERS_IOS: "XHOPPERS_IOS";
301
- readonly XHOPPERS_WEB: "XHOPPERS_WEB";
302
- };
303
- /**
304
- * @public
305
- */
306
- export type CallDevice = typeof CallDevice[keyof typeof CallDevice];
307
107
  /**
308
108
  * @public
309
109
  */
@@ -347,22 +147,9 @@ export interface CallParticipant {
347
147
  * @public
348
148
  */
349
149
  export interface CallFlowNotifications {
350
- destinations?: (CallFlowAttachmentDestination)[] | undefined;
351
- type?: (string)[] | undefined;
150
+ destinations?: CallFlowAttachmentDestination[] | undefined;
151
+ type?: string[] | undefined;
352
152
  }
353
- /**
354
- * @public
355
- * @enum
356
- */
357
- export declare const CallFlowTranscriptionStatus: {
358
- readonly AVAILABLE: "AVAILABLE";
359
- readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
360
- readonly UNAVAILABLE: "UNAVAILABLE";
361
- };
362
- /**
363
- * @public
364
- */
365
- export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[keyof typeof CallFlowTranscriptionStatus];
366
153
  /**
367
154
  * @public
368
155
  */
@@ -415,25 +202,25 @@ export interface CallRecord {
415
202
  * @public
416
203
  */
417
204
  queuePosition?: number | undefined;
418
- tags?: (string)[] | undefined;
419
- flags?: (string)[] | undefined;
205
+ tags?: string[] | undefined;
206
+ flags?: string[] | undefined;
420
207
  callerMos?: string | undefined;
421
208
  calleeMos?: string | undefined;
422
209
  xhoppersConfId?: string | undefined;
423
210
  /**
424
211
  * Consider to use `attachments` instead.
425
212
  *
426
- * @deprecated
213
+ * @deprecated deprecated.
427
214
  * @public
428
215
  */
429
- recordings?: (string)[] | undefined;
216
+ recordings?: string[] | undefined;
430
217
  /**
431
218
  * Consider to use `attachments` instead.
432
219
  *
433
- * @deprecated
220
+ * @deprecated deprecated.
434
221
  * @public
435
222
  */
436
- recordingsData?: (CallFlowRecording)[] | undefined;
223
+ recordingsData?: CallFlowRecording[] | undefined;
437
224
  mergeWith?: string | undefined;
438
225
  splitReason?: string | undefined;
439
226
  splitTransferType?: string | undefined;
@@ -449,45 +236,33 @@ export interface CallRecord {
449
236
  /**
450
237
  * Consider to use `attachments` instead.
451
238
  *
452
- * @deprecated
239
+ * @deprecated deprecated.
453
240
  * @public
454
241
  */
455
242
  attachment?: string | undefined;
456
243
  /**
457
244
  * Consider to use `attachments` instead.
458
245
  *
459
- * @deprecated
246
+ * @deprecated deprecated.
460
247
  * @public
461
248
  */
462
249
  attachmentType?: CallFlowAttachmentType | undefined;
463
250
  /**
464
251
  * Consider to use `attachments` instead.
465
252
  *
466
- * @deprecated
253
+ * @deprecated deprecated.
467
254
  * @public
468
255
  */
469
- attachmentDestinations?: (CallFlowAttachmentDestination)[] | undefined;
470
- attachments?: (CallFlowAttachment)[] | undefined;
256
+ attachmentDestinations?: CallFlowAttachmentDestination[] | undefined;
257
+ attachments?: CallFlowAttachment[] | undefined;
471
258
  notifications?: CallFlowNotifications | undefined;
472
259
  id: string;
473
260
  pbx: string;
474
261
  time: number;
475
262
  company: string;
476
- licenses: (License)[];
263
+ licenses: License[];
477
264
  type: RecordType;
478
265
  }
479
- /**
480
- * @public
481
- * @enum
482
- */
483
- export declare const ChannelAccess: {
484
- readonly PRIVATE: "private";
485
- readonly PUBLIC: "public";
486
- };
487
- /**
488
- * @public
489
- */
490
- export type ChannelAccess = typeof ChannelAccess[keyof typeof ChannelAccess];
491
266
  /**
492
267
  * @public
493
268
  */
@@ -510,32 +285,6 @@ export interface User {
510
285
  createdAt?: string | undefined;
511
286
  updatedAt?: string | undefined;
512
287
  }
513
- /**
514
- * @public
515
- * @enum
516
- */
517
- export declare const ChannelType: {
518
- readonly DIRECT: "direct";
519
- readonly GROUP: "group";
520
- };
521
- /**
522
- * @public
523
- */
524
- export type ChannelType = typeof ChannelType[keyof typeof ChannelType];
525
- /**
526
- * @public
527
- * @enum
528
- */
529
- export declare const ChannelContextEventAttendeeStatus: {
530
- readonly ACCEPTED: "accepted";
531
- readonly DECLINED: "declined";
532
- readonly NONE: "none";
533
- readonly TENTATIVE: "tentative";
534
- };
535
- /**
536
- * @public
537
- */
538
- export type ChannelContextEventAttendeeStatus = typeof ChannelContextEventAttendeeStatus[keyof typeof ChannelContextEventAttendeeStatus];
539
288
  /**
540
289
  * @public
541
290
  */
@@ -553,7 +302,7 @@ export interface ChannelContextEvent {
553
302
  start?: string | undefined;
554
303
  end?: string | undefined;
555
304
  summary?: string | undefined;
556
- attendees?: (ChannelContextEventAttendee)[] | undefined;
305
+ attendees?: ChannelContextEventAttendee[] | undefined;
557
306
  }
558
307
  /**
559
308
  * @public
@@ -565,37 +314,15 @@ export interface ChannelContextPushToTalk {
565
314
  */
566
315
  broadcastId?: string | undefined;
567
316
  }
568
- /**
569
- * @public
570
- * @enum
571
- */
572
- export declare const ChannelContextSource: {
573
- readonly KITE: "kite";
574
- };
575
- /**
576
- * @public
577
- */
578
- export type ChannelContextSource = typeof ChannelContextSource[keyof typeof ChannelContextSource];
579
317
  /**
580
318
  * @public
581
319
  */
582
320
  export interface ChannelContext {
583
321
  source?: ChannelContextSource | undefined;
584
322
  target?: string | undefined;
585
- events?: (ChannelContextEvent)[] | undefined;
323
+ events?: ChannelContextEvent[] | undefined;
586
324
  ptt?: ChannelContextPushToTalk | undefined;
587
325
  }
588
- /**
589
- * @public
590
- * @enum
591
- */
592
- export declare const ChannelWhatsAppStatus: {
593
- readonly CHANNEL_CLOSED: "24h_channel_closed";
594
- };
595
- /**
596
- * @public
597
- */
598
- export type ChannelWhatsAppStatus = typeof ChannelWhatsAppStatus[keyof typeof ChannelWhatsAppStatus];
599
326
  /**
600
327
  * @public
601
328
  */
@@ -642,43 +369,6 @@ export interface Channel {
642
369
  createdBy: string;
643
370
  updatedAt?: string | undefined;
644
371
  }
645
- /**
646
- * @public
647
- * @enum
648
- */
649
- export declare const ChatDirection: {
650
- readonly INBOUND: "INBOUND";
651
- readonly INTERNAL: "INTERNAL";
652
- readonly OUTBOUND: "OUTBOUND";
653
- };
654
- /**
655
- * @public
656
- */
657
- export type ChatDirection = typeof ChatDirection[keyof typeof ChatDirection];
658
- /**
659
- * @public
660
- * @enum
661
- */
662
- export declare const ChatParticipantRole: {
663
- readonly AGENT: "AGENT";
664
- readonly CLIENT: "CLIENT";
665
- };
666
- /**
667
- * @public
668
- */
669
- export type ChatParticipantRole = typeof ChatParticipantRole[keyof typeof ChatParticipantRole];
670
- /**
671
- * @public
672
- * @enum
673
- */
674
- export declare const ChatParticipantType: {
675
- readonly LOCAL: "LOCAL";
676
- readonly REMOTE: "REMOTE";
677
- };
678
- /**
679
- * @public
680
- */
681
- export type ChatParticipantType = typeof ChatParticipantType[keyof typeof ChatParticipantType];
682
372
  /**
683
373
  * @public
684
374
  */
@@ -710,34 +400,6 @@ export interface ChatParticipant {
710
400
  id: string;
711
401
  info: ChatParticipantInfo;
712
402
  }
713
- /**
714
- * @public
715
- * @enum
716
- */
717
- export declare const ChatStatus: {
718
- readonly COMPLETED: "COMPLETED";
719
- readonly MISSED: "MISSED";
720
- readonly WAITFIRSTREPLY: "WAITFIRSTREPLY";
721
- readonly WAITREPLYFROMAGENT: "WAITREPLYFROMAGENT";
722
- readonly WAITREPLYFROMGUEST: "WAITREPLYFROMGUEST";
723
- };
724
- /**
725
- * @public
726
- */
727
- export type ChatStatus = typeof ChatStatus[keyof typeof ChatStatus];
728
- /**
729
- * @public
730
- * @enum
731
- */
732
- export declare const ChatTag: {
733
- readonly SMS: "sms";
734
- readonly TELEPHONY: "telephony";
735
- readonly WHATSAPP: "whatsapp";
736
- };
737
- /**
738
- * @public
739
- */
740
- export type ChatTag = typeof ChatTag[keyof typeof ChatTag];
741
403
  /**
742
404
  * @public
743
405
  */
@@ -763,68 +425,13 @@ export interface ChatRecord {
763
425
  subject?: string | undefined;
764
426
  service?: string | undefined;
765
427
  serviceTitle?: string | undefined;
766
- tags?: (ChatTag)[] | undefined;
428
+ tags?: ChatTag[] | undefined;
767
429
  channel: Channel;
768
430
  status?: ChatStatus | undefined;
769
- participants: (ChatParticipant)[];
431
+ participants: ChatParticipant[];
770
432
  annotationsStatus?: AnnotationsStatus | undefined;
771
433
  type: RecordType;
772
434
  }
773
- /**
774
- * @public
775
- * @enum
776
- */
777
- export declare const ConferenceDirection: {
778
- readonly INBOUND: "INBOUND";
779
- readonly INTERNAL: "INTERNAL";
780
- readonly OUTBOUND: "OUTBOUND";
781
- };
782
- /**
783
- * @public
784
- */
785
- export type ConferenceDirection = typeof ConferenceDirection[keyof typeof ConferenceDirection];
786
- /**
787
- * @public
788
- * @enum
789
- */
790
- export declare const PbxLicenseType: {
791
- readonly BASIC: "basic";
792
- readonly BUSINESS: "business";
793
- readonly ESSENTIAL: "essential";
794
- readonly PREMIUM: "premium";
795
- readonly WIZYCONF: "wizyconf";
796
- };
797
- /**
798
- * @public
799
- */
800
- export type PbxLicenseType = typeof PbxLicenseType[keyof typeof PbxLicenseType];
801
- /**
802
- * @public
803
- * @enum
804
- */
805
- export declare const ConferenceParticipantRole: {
806
- readonly AGENT: "AGENT";
807
- readonly CLIENT: "CLIENT";
808
- };
809
- /**
810
- * @public
811
- */
812
- export type ConferenceParticipantRole = typeof ConferenceParticipantRole[keyof typeof ConferenceParticipantRole];
813
- /**
814
- * @public
815
- * @enum
816
- */
817
- export declare const ConferenceParticipantType: {
818
- readonly EXTERNAL: "EXTERNAL";
819
- readonly EXTERNAL_DIAL_IN: "EXTERNAL_DIAL_IN";
820
- readonly PBX: "PBX";
821
- readonly PBX_SIP: "PBX_SIP";
822
- readonly XBS: "XBS";
823
- };
824
- /**
825
- * @public
826
- */
827
- export type ConferenceParticipantType = typeof ConferenceParticipantType[keyof typeof ConferenceParticipantType];
828
435
  /**
829
436
  * @public
830
437
  */
@@ -865,19 +472,6 @@ export interface ConferenceRecording {
865
472
  start: number;
866
473
  end: number;
867
474
  }
868
- /**
869
- * @public
870
- * @enum
871
- */
872
- export declare const ConferenceTranscriptionStatus: {
873
- readonly AVAILABLE: "AVAILABLE";
874
- readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
875
- readonly UNAVAILABLE: "UNAVAILABLE";
876
- };
877
- /**
878
- * @public
879
- */
880
- export type ConferenceTranscriptionStatus = typeof ConferenceTranscriptionStatus[keyof typeof ConferenceTranscriptionStatus];
881
475
  /**
882
476
  * @public
883
477
  */
@@ -894,8 +488,8 @@ export interface ConferenceRecord {
894
488
  direction: ConferenceDirection;
895
489
  service?: string | undefined;
896
490
  status?: ConversationStatus | undefined;
897
- participants: (ConferenceAnalyticsRecordParticipant)[];
898
- recordings?: (ConferenceRecording)[] | undefined;
491
+ participants: ConferenceAnalyticsRecordParticipant[];
492
+ recordings?: ConferenceRecording[] | undefined;
899
493
  transcriptionStatus: ConferenceTranscriptionStatus;
900
494
  transcriptionLanguage?: string | undefined;
901
495
  transcriptionSeconds?: number | undefined;
@@ -947,7 +541,7 @@ export interface AggregationDurationDefinition {
947
541
  * A custom list of buckets to use for the duration aggregation. If not provided, default buckets will be used.
948
542
  * @public
949
543
  */
950
- buckets?: (DurationGroupBucket)[] | undefined;
544
+ buckets?: DurationGroupBucket[] | undefined;
951
545
  }
952
546
  /**
953
547
  * @public
@@ -1548,6 +1142,10 @@ export declare namespace AggregationDefinition {
1548
1142
  hourOfDay?: never;
1549
1143
  $unknown: [string, any];
1550
1144
  }
1145
+ /**
1146
+ * @deprecated unused in schema-serde mode.
1147
+ *
1148
+ */
1551
1149
  interface Visitor<T> {
1552
1150
  projection: (value: AggregationProjectionDefinition) => T;
1553
1151
  direction: (value: AggregationNoConfigurationDefinition) => T;
@@ -1573,7 +1171,6 @@ export declare namespace AggregationDefinition {
1573
1171
  hourOfDay: (value: AggregationHourOfDayDefinition) => T;
1574
1172
  _: (name: string, value: any) => T;
1575
1173
  }
1576
- const visit: <T>(value: AggregationDefinition, visitor: Visitor<T>) => T;
1577
1174
  }
1578
1175
  /**
1579
1176
  * @public
@@ -1848,6 +1445,10 @@ export declare namespace ListConversationsFilterField {
1848
1445
  projection?: never;
1849
1446
  $unknown: [string, any];
1850
1447
  }
1448
+ /**
1449
+ * @deprecated unused in schema-serde mode.
1450
+ *
1451
+ */
1851
1452
  interface Visitor<T> {
1852
1453
  direction: (value: boolean) => T;
1853
1454
  service: (value: boolean) => T;
@@ -1865,7 +1466,6 @@ export declare namespace ListConversationsFilterField {
1865
1466
  projection: (value: ListConversationsFilterProjectionField) => T;
1866
1467
  _: (name: string, value: any) => T;
1867
1468
  }
1868
- const visit: <T>(value: ListConversationsFilterField, visitor: Visitor<T>) => T;
1869
1469
  }
1870
1470
  /**
1871
1471
  * @public
@@ -1883,24 +1483,6 @@ export interface ListConversationsFilterAbsoluteDate {
1883
1483
  to?: string | undefined;
1884
1484
  timeZone?: string | undefined;
1885
1485
  }
1886
- /**
1887
- * @public
1888
- * @enum
1889
- */
1890
- export declare const ListConversationsFilterPredefinedDateType: {
1891
- readonly LAST_30_DAYS: "LAST_30_DAYS";
1892
- readonly PREVIOUS_MONTH: "PREVIOUS_MONTH";
1893
- readonly PREVIOUS_WEEK: "PREVIOUS_WEEK";
1894
- readonly THIS_MONTH: "THIS_MONTH";
1895
- readonly THIS_QUARTER: "THIS_QUARTER";
1896
- readonly THIS_WEEK: "THIS_WEEK";
1897
- readonly TODAY: "TODAY";
1898
- readonly YESTERDAY: "YESTERDAY";
1899
- };
1900
- /**
1901
- * @public
1902
- */
1903
- export type ListConversationsFilterPredefinedDateType = typeof ListConversationsFilterPredefinedDateType[keyof typeof ListConversationsFilterPredefinedDateType];
1904
1486
  /**
1905
1487
  * @public
1906
1488
  */
@@ -1934,12 +1516,15 @@ export declare namespace ListConversationsFilterDate {
1934
1516
  predefined?: never;
1935
1517
  $unknown: [string, any];
1936
1518
  }
1519
+ /**
1520
+ * @deprecated unused in schema-serde mode.
1521
+ *
1522
+ */
1937
1523
  interface Visitor<T> {
1938
1524
  absolute: (value: ListConversationsFilterAbsoluteDate) => T;
1939
1525
  predefined: (value: ListConversationsFilterPredefinedDate) => T;
1940
1526
  _: (name: string, value: any) => T;
1941
1527
  }
1942
- const visit: <T>(value: ListConversationsFilterDate, visitor: Visitor<T>) => T;
1943
1528
  }
1944
1529
  /**
1945
1530
  * @public
@@ -2025,13 +1610,16 @@ export declare namespace ConversationTarget {
2025
1610
  chat?: never;
2026
1611
  $unknown: [string, any];
2027
1612
  }
1613
+ /**
1614
+ * @deprecated unused in schema-serde mode.
1615
+ *
1616
+ */
2028
1617
  interface Visitor<T> {
2029
1618
  call: (value: CallConversationTarget) => T;
2030
1619
  conference: (value: ConferenceConversationTarget) => T;
2031
1620
  chat: (value: ChatConversationTarget) => T;
2032
1621
  _: (name: string, value: any) => T;
2033
1622
  }
2034
- const visit: <T>(value: ConversationTarget, visitor: Visitor<T>) => T;
2035
1623
  }
2036
1624
  /**
2037
1625
  * @public
@@ -2040,7 +1628,7 @@ export interface ListConversationsFilterInsight {
2040
1628
  projectionId: string;
2041
1629
  fieldId: string;
2042
1630
  match?: string | undefined;
2043
- matchAny?: (string)[] | undefined;
1631
+ matchAny?: string[] | undefined;
2044
1632
  }
2045
1633
  /**
2046
1634
  * @public
@@ -2095,64 +1683,52 @@ export declare namespace ListConversationsFilterParticipant {
2095
1683
  extension?: never;
2096
1684
  $unknown: [string, any];
2097
1685
  }
1686
+ /**
1687
+ * @deprecated unused in schema-serde mode.
1688
+ *
1689
+ */
2098
1690
  interface Visitor<T> {
2099
1691
  email: (value: string) => T;
2100
1692
  phone: (value: string) => T;
2101
1693
  extension: (value: string) => T;
2102
1694
  _: (name: string, value: any) => T;
2103
1695
  }
2104
- const visit: <T>(value: ListConversationsFilterParticipant, visitor: Visitor<T>) => T;
2105
1696
  }
2106
1697
  /**
2107
1698
  * @public
2108
1699
  */
2109
1700
  export interface ListConversationsFilter {
2110
- id?: (ConversationTarget)[] | undefined;
1701
+ id?: ConversationTarget[] | undefined;
2111
1702
  entity?: ListConversationsFilterEntity | undefined;
2112
- participants?: (ListConversationsFilterParticipant)[] | undefined;
2113
- participantsToInclude?: (ListConversationsFilterParticipant)[] | undefined;
2114
- participantsToExclude?: (ListConversationsFilterParticipant)[] | undefined;
2115
- chatbots?: (string)[] | undefined;
2116
- voicebots?: (string)[] | undefined;
2117
- service?: (string)[] | undefined;
2118
- group?: (string)[] | undefined;
2119
- department?: (string)[] | undefined;
2120
- tag?: (string)[] | undefined;
2121
- pbx?: (string)[] | undefined;
2122
- trunk?: (string)[] | undefined;
2123
- queue?: (string)[] | undefined;
2124
- country?: (string)[] | undefined;
2125
- location?: (string)[] | undefined;
2126
- phases?: (string)[] | undefined;
2127
- language?: (string)[] | undefined;
1703
+ participants?: ListConversationsFilterParticipant[] | undefined;
1704
+ participantsToInclude?: ListConversationsFilterParticipant[] | undefined;
1705
+ participantsToExclude?: ListConversationsFilterParticipant[] | undefined;
1706
+ chatbots?: string[] | undefined;
1707
+ voicebots?: string[] | undefined;
1708
+ service?: string[] | undefined;
1709
+ group?: string[] | undefined;
1710
+ department?: string[] | undefined;
1711
+ tag?: string[] | undefined;
1712
+ pbx?: string[] | undefined;
1713
+ trunk?: string[] | undefined;
1714
+ queue?: string[] | undefined;
1715
+ country?: string[] | undefined;
1716
+ location?: string[] | undefined;
1717
+ phases?: string[] | undefined;
1718
+ language?: string[] | undefined;
2128
1719
  duration?: ListConversationsFilterNumber | undefined;
2129
1720
  interaction?: ListConversationsFilterInteraction | undefined;
2130
1721
  recorded?: boolean | undefined;
2131
1722
  transcribed?: boolean | undefined;
2132
1723
  direction?: ListConversationsFilterDirection | undefined;
2133
- insights?: (ListConversationsFilterInsight)[] | undefined;
1724
+ insights?: ListConversationsFilterInsight[] | undefined;
2134
1725
  channel?: ListConversationsFilterChannel | undefined;
2135
1726
  date?: ListConversationsFilterDate | undefined;
2136
1727
  dayOfWeek?: ListConversationsFilterDateIndex | undefined;
2137
1728
  hourOfDay?: ListConversationsFilterDateIndex | undefined;
2138
- present?: (ListConversationsFilterField)[] | undefined;
2139
- absent?: (ListConversationsFilterField)[] | undefined;
1729
+ present?: ListConversationsFilterField[] | undefined;
1730
+ absent?: ListConversationsFilterField[] | undefined;
2140
1731
  }
2141
- /**
2142
- * @public
2143
- * @enum
2144
- */
2145
- export declare const AggregationDateInterval: {
2146
- readonly DAY: "day";
2147
- readonly HOUR: "hour";
2148
- readonly MINUTE: "minute";
2149
- readonly MONTH: "month";
2150
- readonly WEEK: "week";
2151
- };
2152
- /**
2153
- * @public
2154
- */
2155
- export type AggregationDateInterval = typeof AggregationDateInterval[keyof typeof AggregationDateInterval];
2156
1732
  /**
2157
1733
  * @public
2158
1734
  */
@@ -2184,23 +1760,11 @@ export interface ConversationPlaybackState {
2184
1760
  * @public
2185
1761
  */
2186
1762
  export interface ConversationState {
2187
- playlists?: (string)[] | undefined;
1763
+ playlists?: string[] | undefined;
2188
1764
  playback?: ConversationPlaybackState | undefined;
2189
1765
  firstWatchedAt?: string | undefined;
2190
1766
  lastWatchedAt?: string | undefined;
2191
1767
  }
2192
- /**
2193
- * @public
2194
- * @enum
2195
- */
2196
- export declare const DashboardPermission: {
2197
- readonly EDIT: "edit";
2198
- readonly VIEW: "view";
2199
- };
2200
- /**
2201
- * @public
2202
- */
2203
- export type DashboardPermission = typeof DashboardPermission[keyof typeof DashboardPermission];
2204
1768
  /**
2205
1769
  * @public
2206
1770
  */
@@ -2227,12 +1791,15 @@ export declare namespace DashboardPrincipal {
2227
1791
  groupId?: never;
2228
1792
  $unknown: [string, any];
2229
1793
  }
1794
+ /**
1795
+ * @deprecated unused in schema-serde mode.
1796
+ *
1797
+ */
2230
1798
  interface Visitor<T> {
2231
1799
  userId: (value: string) => T;
2232
1800
  groupId: (value: string) => T;
2233
1801
  _: (name: string, value: any) => T;
2234
1802
  }
2235
- const visit: <T>(value: DashboardPrincipal, visitor: Visitor<T>) => T;
2236
1803
  }
2237
1804
  /**
2238
1805
  * @public
@@ -2241,24 +1808,12 @@ export interface DashboardGrant {
2241
1808
  permission: DashboardPermission;
2242
1809
  principal: DashboardPrincipal;
2243
1810
  }
2244
- /**
2245
- * @public
2246
- * @enum
2247
- */
2248
- export declare const DashboardVisibility: {
2249
- readonly EXPLICIT: "explicit";
2250
- readonly ORGANIZATION: "organization";
2251
- };
2252
- /**
2253
- * @public
2254
- */
2255
- export type DashboardVisibility = typeof DashboardVisibility[keyof typeof DashboardVisibility];
2256
1811
  /**
2257
1812
  * @public
2258
1813
  */
2259
1814
  export interface DashboardAccess {
2260
1815
  visibility?: DashboardVisibility | undefined;
2261
- grants?: (DashboardGrant)[] | undefined;
1816
+ grants?: DashboardGrant[] | undefined;
2262
1817
  }
2263
1818
  /**
2264
1819
  * @public
@@ -2284,14 +1839,14 @@ export interface DashboardVisual {
2284
1839
  export interface DashboardSheet {
2285
1840
  id: string;
2286
1841
  name: string;
2287
- visuals: (DashboardVisual)[];
1842
+ visuals: DashboardVisual[];
2288
1843
  filter?: ListConversationsFilter | undefined;
2289
1844
  }
2290
1845
  /**
2291
1846
  * @public
2292
1847
  */
2293
1848
  export interface DashboardDefinition {
2294
- sheets?: (DashboardSheet)[] | undefined;
1849
+ sheets?: DashboardSheet[] | undefined;
2295
1850
  filter?: ListConversationsFilter | undefined;
2296
1851
  }
2297
1852
  /**
@@ -2385,18 +1940,6 @@ export interface ListFiltersItem {
2385
1940
  export interface CreateFilterOutput {
2386
1941
  item: ListFiltersItem;
2387
1942
  }
2388
- /**
2389
- * @public
2390
- * @enum
2391
- */
2392
- export declare const PlaylistPermission: {
2393
- readonly EDIT: "edit";
2394
- readonly VIEW: "view";
2395
- };
2396
- /**
2397
- * @public
2398
- */
2399
- export type PlaylistPermission = typeof PlaylistPermission[keyof typeof PlaylistPermission];
2400
1943
  /**
2401
1944
  * @public
2402
1945
  */
@@ -2423,12 +1966,15 @@ export declare namespace PlaylistPrincipal {
2423
1966
  groupId?: never;
2424
1967
  $unknown: [string, any];
2425
1968
  }
1969
+ /**
1970
+ * @deprecated unused in schema-serde mode.
1971
+ *
1972
+ */
2426
1973
  interface Visitor<T> {
2427
1974
  userId: (value: string) => T;
2428
1975
  groupId: (value: string) => T;
2429
1976
  _: (name: string, value: any) => T;
2430
1977
  }
2431
- const visit: <T>(value: PlaylistPrincipal, visitor: Visitor<T>) => T;
2432
1978
  }
2433
1979
  /**
2434
1980
  * @public
@@ -2437,24 +1983,12 @@ export interface PlaylistGrant {
2437
1983
  permission: PlaylistPermission;
2438
1984
  principal: PlaylistPrincipal;
2439
1985
  }
2440
- /**
2441
- * @public
2442
- * @enum
2443
- */
2444
- export declare const PlaylistVisibility: {
2445
- readonly EXPLICIT: "explicit";
2446
- readonly ORGANIZATION: "organization";
2447
- };
2448
- /**
2449
- * @public
2450
- */
2451
- export type PlaylistVisibility = typeof PlaylistVisibility[keyof typeof PlaylistVisibility];
2452
1986
  /**
2453
1987
  * @public
2454
1988
  */
2455
1989
  export interface PlaylistAccess {
2456
1990
  visibility?: PlaylistVisibility | undefined;
2457
- grants?: (PlaylistGrant)[] | undefined;
1991
+ grants?: PlaylistGrant[] | undefined;
2458
1992
  }
2459
1993
  /**
2460
1994
  * @public
@@ -2498,7 +2032,7 @@ export interface CreatePlaylistOutput {
2498
2032
  * @public
2499
2033
  */
2500
2034
  export interface ProjectionDirectionCondition {
2501
- equals: (CallDirection)[];
2035
+ equals: CallDirection[];
2502
2036
  }
2503
2037
  /**
2504
2038
  * @public
@@ -2507,32 +2041,19 @@ export interface ProjectionDurationCondition {
2507
2041
  minimum: number;
2508
2042
  maximum: number;
2509
2043
  }
2510
- /**
2511
- * @public
2512
- * @enum
2513
- */
2514
- export declare const ProjectionEntityConditionValue: {
2515
- readonly CALL: "call";
2516
- readonly CHAT: "chat";
2517
- readonly CONFERENCE: "conference";
2518
- };
2519
- /**
2520
- * @public
2521
- */
2522
- export type ProjectionEntityConditionValue = typeof ProjectionEntityConditionValue[keyof typeof ProjectionEntityConditionValue];
2523
2044
  /**
2524
2045
  * @public
2525
2046
  */
2526
2047
  export interface ProjectionEntityCondition {
2527
- equals: (ProjectionEntityConditionValue)[];
2048
+ equals: ProjectionEntityConditionValue[];
2528
2049
  }
2529
2050
  /**
2530
2051
  * @public
2531
2052
  */
2532
2053
  export interface ProjectionParticipantsCondition {
2533
- emails?: (string)[] | undefined;
2534
- extensions?: (string)[] | undefined;
2535
- groups?: (string)[] | undefined;
2054
+ emails?: string[] | undefined;
2055
+ extensions?: string[] | undefined;
2056
+ groups?: string[] | undefined;
2536
2057
  }
2537
2058
  /**
2538
2059
  * @public
@@ -2580,6 +2101,10 @@ export declare namespace ProjectionCondition {
2580
2101
  duration?: never;
2581
2102
  $unknown: [string, any];
2582
2103
  }
2104
+ /**
2105
+ * @deprecated unused in schema-serde mode.
2106
+ *
2107
+ */
2583
2108
  interface Visitor<T> {
2584
2109
  entity: (value: ProjectionEntityCondition) => T;
2585
2110
  direction: (value: ProjectionDirectionCondition) => T;
@@ -2587,7 +2112,6 @@ export declare namespace ProjectionCondition {
2587
2112
  duration: (value: ProjectionDurationCondition) => T;
2588
2113
  _: (name: string, value: any) => T;
2589
2114
  }
2590
- const visit: <T>(value: ProjectionCondition, visitor: Visitor<T>) => T;
2591
2115
  }
2592
2116
  /**
2593
2117
  * @public
@@ -2598,14 +2122,14 @@ export interface ProjectionMultilineParameter {
2598
2122
  * @public
2599
2123
  */
2600
2124
  export interface ProjectionSelectionParameter {
2601
- options: (string)[];
2125
+ options: string[];
2602
2126
  multi?: boolean | undefined;
2603
2127
  adaptive?: boolean | undefined;
2604
2128
  /**
2605
2129
  * Options generated by AI when adaptive mode was enabled.
2606
2130
  * @public
2607
2131
  */
2608
- adaptiveOptions?: (string)[] | undefined;
2132
+ adaptiveOptions?: string[] | undefined;
2609
2133
  }
2610
2134
  /**
2611
2135
  * @public
@@ -2647,13 +2171,16 @@ export declare namespace ProjectionParameter {
2647
2171
  selection?: never;
2648
2172
  $unknown: [string, any];
2649
2173
  }
2174
+ /**
2175
+ * @deprecated unused in schema-serde mode.
2176
+ *
2177
+ */
2650
2178
  interface Visitor<T> {
2651
2179
  text: (value: ProjectionTextParameter) => T;
2652
2180
  multiline: (value: ProjectionMultilineParameter) => T;
2653
2181
  selection: (value: ProjectionSelectionParameter) => T;
2654
2182
  _: (name: string, value: any) => T;
2655
2183
  }
2656
- const visit: <T>(value: ProjectionParameter, visitor: Visitor<T>) => T;
2657
2184
  }
2658
2185
  /**
2659
2186
  * @public
@@ -2677,7 +2204,7 @@ export interface CreateProjectionInput {
2677
2204
  /**
2678
2205
  * Compatibility field for legacy clients. Use `category` instead.
2679
2206
  *
2680
- * @deprecated
2207
+ * @deprecated deprecated.
2681
2208
  * @public
2682
2209
  */
2683
2210
  categoryId?: string | undefined;
@@ -2687,10 +2214,10 @@ export interface CreateProjectionInput {
2687
2214
  /**
2688
2215
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
2689
2216
  *
2690
- * @deprecated
2217
+ * @deprecated deprecated.
2691
2218
  * @public
2692
2219
  */
2693
- conditions?: (ProjectionCondition)[] | undefined;
2220
+ conditions?: ProjectionCondition[] | undefined;
2694
2221
  /**
2695
2222
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
2696
2223
  * @public
@@ -2706,7 +2233,7 @@ export interface CreateProjectionInput {
2706
2233
  * @public
2707
2234
  */
2708
2235
  group?: string | undefined;
2709
- fields: (ProjectionField)[];
2236
+ fields: ProjectionField[];
2710
2237
  /**
2711
2238
  * The unique identifier of the tenant when a service token is used.
2712
2239
  * @public
@@ -2725,19 +2252,6 @@ export interface ProjectionMetadata {
2725
2252
  */
2726
2253
  customized?: boolean | undefined;
2727
2254
  }
2728
- /**
2729
- * @public
2730
- * @enum
2731
- */
2732
- export declare const ProjectionStatus: {
2733
- readonly DISABLED: "DISABLED";
2734
- readonly ENABLED: "ENABLED";
2735
- readonly PAUSED: "PAUSED";
2736
- };
2737
- /**
2738
- * @public
2739
- */
2740
- export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionStatus];
2741
2255
  /**
2742
2256
  * @public
2743
2257
  */
@@ -2750,7 +2264,7 @@ export interface Projection {
2750
2264
  /**
2751
2265
  * Compatibility field for legacy clients. Use `category` instead.
2752
2266
  *
2753
- * @deprecated
2267
+ * @deprecated deprecated.
2754
2268
  * @public
2755
2269
  */
2756
2270
  categoryId?: string | undefined;
@@ -2760,10 +2274,10 @@ export interface Projection {
2760
2274
  /**
2761
2275
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
2762
2276
  *
2763
- * @deprecated
2277
+ * @deprecated deprecated.
2764
2278
  * @public
2765
2279
  */
2766
- conditions?: (ProjectionCondition)[] | undefined;
2280
+ conditions?: ProjectionCondition[] | undefined;
2767
2281
  /**
2768
2282
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
2769
2283
  * @public
@@ -2779,7 +2293,7 @@ export interface Projection {
2779
2293
  * @public
2780
2294
  */
2781
2295
  group?: string | undefined;
2782
- fields: (ProjectionField)[];
2296
+ fields: ProjectionField[];
2783
2297
  id: string;
2784
2298
  status: ProjectionStatus;
2785
2299
  version: number;
@@ -2822,7 +2336,7 @@ export interface CreateProjectionsCategoryOutput {
2822
2336
  * @public
2823
2337
  */
2824
2338
  export interface DashboardAccessNotify {
2825
- emails: (string)[];
2339
+ emails: string[];
2826
2340
  message?: string | undefined;
2827
2341
  }
2828
2342
  /**
@@ -2970,17 +2484,6 @@ export interface EnableProjectionInput {
2970
2484
  export interface EnableProjectionOutput {
2971
2485
  projection: Projection;
2972
2486
  }
2973
- /**
2974
- * @public
2975
- */
2976
- export declare class FilterNotFoundException extends __BaseException {
2977
- readonly name: "FilterNotFoundException";
2978
- readonly $fault: "client";
2979
- /**
2980
- * @internal
2981
- */
2982
- constructor(opts: __ExceptionOptionType<FilterNotFoundException, __BaseException>);
2983
- }
2984
2487
  /**
2985
2488
  * @public
2986
2489
  */
@@ -3015,7 +2518,7 @@ export interface FlatAggregationResult {
3015
2518
  * The list of buckets generated for this insight.
3016
2519
  * @public
3017
2520
  */
3018
- buckets: (FlatAggregationBucket)[];
2521
+ buckets: FlatAggregationBucket[];
3019
2522
  }
3020
2523
  /**
3021
2524
  * @public
@@ -3053,7 +2556,7 @@ export interface InsightsInterruptionsChunk {
3053
2556
  * @public
3054
2557
  */
3055
2558
  export interface InsightsInterruptions {
3056
- chunks?: (InsightsInterruptionsChunk)[] | undefined;
2559
+ chunks?: InsightsInterruptionsChunk[] | undefined;
3057
2560
  }
3058
2561
  /**
3059
2562
  * @public
@@ -3066,7 +2569,7 @@ export interface InsightsNonTalkTimeChunk {
3066
2569
  * @public
3067
2570
  */
3068
2571
  export interface InsightsNonTalkTime {
3069
- chunks?: (InsightsNonTalkTimeChunk)[] | undefined;
2572
+ chunks?: InsightsNonTalkTimeChunk[] | undefined;
3070
2573
  }
3071
2574
  /**
3072
2575
  * @public
@@ -3089,15 +2592,15 @@ export interface InsightsSentimentParticipantScore {
3089
2592
  */
3090
2593
  export interface InsightsSentimentScoreByPeriodChunk {
3091
2594
  score: number;
3092
- participants?: (InsightsSentimentParticipantScore)[] | undefined;
2595
+ participants?: InsightsSentimentParticipantScore[] | undefined;
3093
2596
  }
3094
2597
  /**
3095
2598
  * @public
3096
2599
  */
3097
2600
  export interface InsightsSentiment {
3098
2601
  score?: number | undefined;
3099
- scoreByParticipant?: (InsightsSentimentScoreByParticipantChunk)[] | undefined;
3100
- scoreByPeriod?: (InsightsSentimentScoreByPeriodChunk)[] | undefined;
2602
+ scoreByParticipant?: InsightsSentimentScoreByParticipantChunk[] | undefined;
2603
+ scoreByPeriod?: InsightsSentimentScoreByPeriodChunk[] | undefined;
3101
2604
  }
3102
2605
  /**
3103
2606
  * @public
@@ -3110,7 +2613,7 @@ export interface InsightsTalkSpeedChunk {
3110
2613
  * @public
3111
2614
  */
3112
2615
  export interface InsightsCharacteristicsTalkSpeed {
3113
- detailsByParticipant?: (InsightsTalkSpeedChunk)[] | undefined;
2616
+ detailsByParticipant?: InsightsTalkSpeedChunk[] | undefined;
3114
2617
  }
3115
2618
  /**
3116
2619
  * @public
@@ -3123,7 +2626,7 @@ export interface InsightsTalkTimeChunk {
3123
2626
  * @public
3124
2627
  */
3125
2628
  export interface InsightsTalkTime {
3126
- detailsByParticipant?: (InsightsTalkTimeChunk)[] | undefined;
2629
+ detailsByParticipant?: InsightsTalkTimeChunk[] | undefined;
3127
2630
  }
3128
2631
  /**
3129
2632
  * @public
@@ -3136,22 +2639,6 @@ export interface InsightsCharacteristics {
3136
2639
  talkSpeed?: InsightsCharacteristicsTalkSpeed | undefined;
3137
2640
  talkTime?: InsightsTalkTime | undefined;
3138
2641
  }
3139
- /**
3140
- * @public
3141
- * @enum
3142
- */
3143
- export declare const InsightsStatus: {
3144
- readonly FAILED: "FAILED";
3145
- readonly NONE: "NONE";
3146
- readonly SCHEDULED: "SCHEDULED";
3147
- readonly STARTED: "STARTED";
3148
- readonly SUCCEEDED: "SUCCEEDED";
3149
- readonly UNAVAILABLE: "UNAVAILABLE";
3150
- };
3151
- /**
3152
- * @public
3153
- */
3154
- export type InsightsStatus = typeof InsightsStatus[keyof typeof InsightsStatus];
3155
2642
  /**
3156
2643
  * @public
3157
2644
  */
@@ -3175,19 +2662,6 @@ export interface ProjectionInsightsField {
3175
2662
  name: string;
3176
2663
  value: __DocumentType;
3177
2664
  }
3178
- /**
3179
- * @public
3180
- * @enum
3181
- */
3182
- export declare const InsightsReason: {
3183
- readonly CONDITIONS_NOT_MATCH: "CONDITIONS_NOT_MATCH";
3184
- readonly INTERNAL_ERROR: "INTERNAL_ERROR";
3185
- readonly TRANSCRIPTION_TOO_SMALL: "TRANSCRIPTION_TOO_SMALL";
3186
- };
3187
- /**
3188
- * @public
3189
- */
3190
- export type InsightsReason = typeof InsightsReason[keyof typeof InsightsReason];
3191
2665
  /**
3192
2666
  * @public
3193
2667
  */
@@ -3205,14 +2679,14 @@ export interface ProjectionInsights {
3205
2679
  * @public
3206
2680
  */
3207
2681
  reason?: InsightsReason | undefined;
3208
- fields: (ProjectionInsightsField)[];
2682
+ fields: ProjectionInsightsField[];
3209
2683
  }
3210
2684
  /**
3211
2685
  * @public
3212
2686
  */
3213
2687
  export interface GetCallInsightsOutput {
3214
2688
  status: InsightsStatus;
3215
- insights?: (ProjectionInsights)[] | undefined;
2689
+ insights?: ProjectionInsights[] | undefined;
3216
2690
  }
3217
2691
  /**
3218
2692
  * @public
@@ -3254,22 +2728,22 @@ export interface TranscriptionSummaryCsat {
3254
2728
  export interface TranscriptionSummaryJson {
3255
2729
  callBriefVeryShortTitle?: string | undefined;
3256
2730
  callBrief?: string | undefined;
3257
- customerInsights?: (string)[] | undefined;
3258
- keyPoints?: (string)[] | undefined;
3259
- competitiveInformation?: (string)[] | undefined;
3260
- implementationTimeline?: (string)[] | undefined;
3261
- budget?: (string)[] | undefined;
3262
- customerResponse?: (string)[] | undefined;
3263
- salesProposals?: (string)[] | undefined;
3264
- actionItems?: (string)[] | undefined;
3265
- nextSteps?: (string)[] | undefined;
2731
+ customerInsights?: string[] | undefined;
2732
+ keyPoints?: string[] | undefined;
2733
+ competitiveInformation?: string[] | undefined;
2734
+ implementationTimeline?: string[] | undefined;
2735
+ budget?: string[] | undefined;
2736
+ customerResponse?: string[] | undefined;
2737
+ salesProposals?: string[] | undefined;
2738
+ actionItems?: string[] | undefined;
2739
+ nextSteps?: string[] | undefined;
3266
2740
  csat?: TranscriptionSummaryCsat | undefined;
3267
- topics?: (string)[] | undefined;
3268
- review?: (string)[] | undefined;
3269
- progress?: (string)[] | undefined;
3270
- issues?: (string)[] | undefined;
3271
- decisions?: (string)[] | undefined;
3272
- tags?: (string)[] | undefined;
2741
+ topics?: string[] | undefined;
2742
+ review?: string[] | undefined;
2743
+ progress?: string[] | undefined;
2744
+ issues?: string[] | undefined;
2745
+ decisions?: string[] | undefined;
2746
+ tags?: string[] | undefined;
3273
2747
  }
3274
2748
  /**
3275
2749
  * @public
@@ -3298,7 +2772,7 @@ export interface GetChatInsightsInput {
3298
2772
  */
3299
2773
  export interface GetChatInsightsOutput {
3300
2774
  status: InsightsStatus;
3301
- insights?: (ProjectionInsights)[] | undefined;
2775
+ insights?: ProjectionInsights[] | undefined;
3302
2776
  }
3303
2777
  /**
3304
2778
  * @public
@@ -3344,24 +2818,7 @@ export interface GetConferenceInsightsInput {
3344
2818
  */
3345
2819
  export interface GetConferenceInsightsOutput {
3346
2820
  status: InsightsStatus;
3347
- insights?: (ProjectionInsights)[] | undefined;
3348
- }
3349
- /**
3350
- * @public
3351
- * @enum
3352
- */
3353
- export declare const ConversationFileCategory: {
3354
- readonly GENERAL: "channels";
3355
- readonly RECORDING: "recordings";
3356
- readonly WIZY_RECORDING: "wizyconfRecordings";
3357
- };
3358
- /**
3359
- * @public
3360
- */
3361
- export type ConversationFileCategory = typeof ConversationFileCategory[keyof typeof ConversationFileCategory];
3362
- export declare enum DownloadStrategy {
3363
- DEFAULT = 0,
3364
- DOWNLOAD = 1
2821
+ insights?: ProjectionInsights[] | undefined;
3365
2822
  }
3366
2823
  /**
3367
2824
  * @public
@@ -3394,17 +2851,6 @@ export interface GetConferenceRecordingPresignedDownloadUrlOutput {
3394
2851
  */
3395
2852
  presignedDownloadUrl: string;
3396
2853
  }
3397
- /**
3398
- * @public
3399
- */
3400
- export declare class FileNotFoundException extends __BaseException {
3401
- readonly name: "FileNotFoundException";
3402
- readonly $fault: "client";
3403
- /**
3404
- * @internal
3405
- */
3406
- constructor(opts: __ExceptionOptionType<FileNotFoundException, __BaseException>);
3407
- }
3408
2854
  /**
3409
2855
  * @public
3410
2856
  */
@@ -3456,13 +2902,13 @@ export interface ConferenceTimeFramesChunk {
3456
2902
  */
3457
2903
  export interface ConferenceTimeFramesListItem {
3458
2904
  jid: string;
3459
- frames: (ConferenceTimeFramesChunk)[];
2905
+ frames: ConferenceTimeFramesChunk[];
3460
2906
  }
3461
2907
  /**
3462
2908
  * @public
3463
2909
  */
3464
2910
  export interface GetConferenceTimeFramesOutput {
3465
- timeFrames?: (ConferenceTimeFramesListItem)[] | undefined;
2911
+ timeFrames?: ConferenceTimeFramesListItem[] | undefined;
3466
2912
  }
3467
2913
  /**
3468
2914
  * @public
@@ -3526,6 +2972,7 @@ export interface GetProjectionOutput {
3526
2972
  projection: Projection;
3527
2973
  }
3528
2974
  /**
2975
+ * @deprecated deprecated.
3529
2976
  * @public
3530
2977
  */
3531
2978
  export interface InsightsBucket {
@@ -3546,6 +2993,7 @@ export interface InsightsBucket {
3546
2993
  filter?: ListConversationsFilter | undefined;
3547
2994
  }
3548
2995
  /**
2996
+ * @deprecated deprecated.
3549
2997
  * @public
3550
2998
  */
3551
2999
  export interface InsightResult {
@@ -3553,10 +3001,10 @@ export interface InsightResult {
3553
3001
  /**
3554
3002
  * The list of buckets generated for this insight.
3555
3003
  *
3556
- * @deprecated
3004
+ * @deprecated deprecated.
3557
3005
  * @public
3558
3006
  */
3559
- buckets: (InsightsBucket)[];
3007
+ buckets: InsightsBucket[];
3560
3008
  }
3561
3009
  /**
3562
3010
  * @public
@@ -3605,13 +3053,16 @@ export declare namespace ListConversationsItemEvent {
3605
3053
  chat?: never;
3606
3054
  $unknown: [string, any];
3607
3055
  }
3056
+ /**
3057
+ * @deprecated unused in schema-serde mode.
3058
+ *
3059
+ */
3608
3060
  interface Visitor<T> {
3609
3061
  call: (value: CallRecord) => T;
3610
3062
  conference: (value: ConferenceRecord) => T;
3611
3063
  chat: (value: ChatRecord) => T;
3612
3064
  _: (name: string, value: any) => T;
3613
3065
  }
3614
- const visit: <T>(value: ListConversationsItemEvent, visitor: Visitor<T>) => T;
3615
3066
  }
3616
3067
  /**
3617
3068
  * @public
@@ -3633,7 +3084,7 @@ export interface ListConversationsItemHighlightTranscriptionItem {
3633
3084
  * @public
3634
3085
  */
3635
3086
  export interface ListConversationsItemHighlight {
3636
- transcription?: (ListConversationsItemHighlightTranscriptionItem)[] | undefined;
3087
+ transcription?: ListConversationsItemHighlightTranscriptionItem[] | undefined;
3637
3088
  summary?: ListConversationsItemHighlightSummary | undefined;
3638
3089
  subject?: string | undefined;
3639
3090
  }
@@ -3686,7 +3137,7 @@ export interface ListConversationsItemSummary {
3686
3137
  status: InsightsStatus;
3687
3138
  title?: string | undefined;
3688
3139
  brief?: string | undefined;
3689
- insights?: (ListConversationsItemInsight)[] | undefined;
3140
+ insights?: ListConversationsItemInsight[] | undefined;
3690
3141
  language?: string | undefined;
3691
3142
  }
3692
3143
  /**
@@ -3702,7 +3153,7 @@ export interface ListConversationsItem {
3702
3153
  * @public
3703
3154
  */
3704
3155
  export interface ListConversationsOutput {
3705
- items: (ListConversationsItem)[];
3156
+ items: ListConversationsItem[];
3706
3157
  /**
3707
3158
  * A temporary parameter which would be removed in next updates.
3708
3159
  * @public
@@ -3718,7 +3169,7 @@ export interface ListConversationsAggregationsInput {
3718
3169
  * A list of insights to select. Default - all projections, direction and duration.
3719
3170
  * @public
3720
3171
  */
3721
- insights?: (AggregationDefinition)[] | undefined;
3172
+ insights?: AggregationDefinition[] | undefined;
3722
3173
  filter?: ListConversationsFilter | undefined;
3723
3174
  }
3724
3175
  /**
@@ -3734,7 +3185,7 @@ export interface ListConversationsAggregationsOutput {
3734
3185
  * Top-level distribution buckets as per the first grouping. Each bucket can contain nested child buckets for subsequent groupings.
3735
3186
  * @public
3736
3187
  */
3737
- result?: (FlatAggregationResult)[] | undefined;
3188
+ result?: FlatAggregationResult[] | undefined;
3738
3189
  }
3739
3190
  /**
3740
3191
  * @public
@@ -3745,7 +3196,7 @@ export interface ListConversationsInsightsInput {
3745
3196
  * A list of insights to select. Default - all projections, direction and duration.
3746
3197
  * @public
3747
3198
  */
3748
- insights?: (AggregationDefinition)[] | undefined;
3199
+ insights?: AggregationDefinition[] | undefined;
3749
3200
  filter?: ListConversationsFilter | undefined;
3750
3201
  }
3751
3202
  /**
@@ -3760,17 +3211,17 @@ export interface ListConversationsInsightsOutput {
3760
3211
  /**
3761
3212
  * Top-level distribution buckets as per the first grouping. Each bucket can contain nested child buckets for subsequent groupings.
3762
3213
  *
3763
- * @deprecated
3214
+ * @deprecated deprecated.
3764
3215
  * @public
3765
3216
  */
3766
- result?: (InsightResult)[] | undefined;
3217
+ result?: InsightResult[] | undefined;
3767
3218
  }
3768
3219
  /**
3769
3220
  * @public
3770
3221
  */
3771
3222
  export interface ListConversationsInsightsAggregationsInput {
3772
3223
  company?: string | undefined;
3773
- aggregations: (AggregationDefinition)[];
3224
+ aggregations: AggregationDefinition[];
3774
3225
  filter?: ListConversationsFilter | undefined;
3775
3226
  }
3776
3227
  /**
@@ -3778,7 +3229,7 @@ export interface ListConversationsInsightsAggregationsInput {
3778
3229
  */
3779
3230
  export interface ListConversationsNestedAggregationsInput {
3780
3231
  company?: string | undefined;
3781
- aggregations: (AggregationDefinition)[];
3232
+ aggregations: AggregationDefinition[];
3782
3233
  filter?: ListConversationsFilter | undefined;
3783
3234
  }
3784
3235
  /**
@@ -3800,7 +3251,7 @@ export interface ListDashboardsInput {
3800
3251
  * @public
3801
3252
  */
3802
3253
  export interface ListDashboardsOutput {
3803
- dashboards: (Dashboard)[];
3254
+ dashboards: Dashboard[];
3804
3255
  }
3805
3256
  /**
3806
3257
  * @public
@@ -3821,7 +3272,7 @@ export interface ListFiltersInput {
3821
3272
  * @public
3822
3273
  */
3823
3274
  export interface ListFiltersOutput {
3824
- filters: (ListFiltersItem)[];
3275
+ filters: ListFiltersItem[];
3825
3276
  }
3826
3277
  /**
3827
3278
  * @public
@@ -3842,8 +3293,8 @@ export interface ListPinnedDashboardsInput {
3842
3293
  * @public
3843
3294
  */
3844
3295
  export interface ListPinnedDashboardsOutput {
3845
- pinnedDashboardsIds: (string)[];
3846
- pinnedDashboards: (Dashboard)[];
3296
+ pinnedDashboardsIds: string[];
3297
+ pinnedDashboards: Dashboard[];
3847
3298
  }
3848
3299
  /**
3849
3300
  * @public
@@ -3862,19 +3313,6 @@ export interface ListPlaylistItemsInput {
3862
3313
  playlistId: string;
3863
3314
  exclusiveStartKey?: string | undefined;
3864
3315
  }
3865
- /**
3866
- * @public
3867
- * @enum
3868
- */
3869
- export declare const PlaylistItemStatus: {
3870
- readonly AVAILABLE: "AVAILABLE";
3871
- readonly NO_ACCESS: "NO_ACCESS";
3872
- readonly UNAVAILABLE: "UNAVAILABLE";
3873
- };
3874
- /**
3875
- * @public
3876
- */
3877
- export type PlaylistItemStatus = typeof PlaylistItemStatus[keyof typeof PlaylistItemStatus];
3878
3316
  /**
3879
3317
  * @public
3880
3318
  */
@@ -3891,7 +3329,7 @@ export interface PlaylistItem {
3891
3329
  * @public
3892
3330
  */
3893
3331
  export interface ListPlaylistItemsOutput {
3894
- items: (PlaylistItem)[];
3332
+ items: PlaylistItem[];
3895
3333
  lastEvaluatedKey?: string | undefined;
3896
3334
  }
3897
3335
  /**
@@ -3913,7 +3351,7 @@ export interface ListPlaylistsInput {
3913
3351
  * @public
3914
3352
  */
3915
3353
  export interface ListPlaylistsOutput {
3916
- playlists: (Playlist)[];
3354
+ playlists: Playlist[];
3917
3355
  }
3918
3356
  /**
3919
3357
  * @public
@@ -3929,12 +3367,12 @@ export interface ListProjectionsInput {
3929
3367
  * @public
3930
3368
  */
3931
3369
  export interface ListProjectionsOutput {
3932
- projections: (Projection)[];
3370
+ projections: Projection[];
3933
3371
  /**
3934
3372
  * Compatibility field for legacy clients. Categories are simulated from projection `category`/`categoryId` values.
3935
3373
  * @public
3936
3374
  */
3937
- categories?: (ProjectionsCategory)[] | undefined;
3375
+ categories?: ProjectionsCategory[] | undefined;
3938
3376
  }
3939
3377
  /**
3940
3378
  * @public
@@ -3965,8 +3403,8 @@ export interface WatchItem {
3965
3403
  * @public
3966
3404
  */
3967
3405
  export interface ListWatchHistoryOutput {
3968
- items: (ListConversationsItem)[];
3969
- itemsState: (WatchItem)[];
3406
+ items: ListConversationsItem[];
3407
+ itemsState: WatchItem[];
3970
3408
  lastEvaluatedKey?: string | undefined;
3971
3409
  }
3972
3410
  /**
@@ -3990,7 +3428,7 @@ export interface PauseProjectionOutput {
3990
3428
  * @public
3991
3429
  */
3992
3430
  export interface PlaylistAccessNotify {
3993
- emails: (string)[];
3431
+ emails: string[];
3994
3432
  message?: string | undefined;
3995
3433
  }
3996
3434
  /**
@@ -4178,7 +3616,7 @@ export interface UpdatePinnedDashboardsInput {
4178
3616
  * @public
4179
3617
  */
4180
3618
  user?: string | undefined;
4181
- pinned: (string)[];
3619
+ pinned: string[];
4182
3620
  }
4183
3621
  /**
4184
3622
  * @public
@@ -4245,7 +3683,7 @@ export interface UpdateProjectionInput {
4245
3683
  /**
4246
3684
  * Compatibility field for legacy clients. Use `category` instead.
4247
3685
  *
4248
- * @deprecated
3686
+ * @deprecated deprecated.
4249
3687
  * @public
4250
3688
  */
4251
3689
  categoryId?: string | undefined;
@@ -4255,10 +3693,10 @@ export interface UpdateProjectionInput {
4255
3693
  /**
4256
3694
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
4257
3695
  *
4258
- * @deprecated
3696
+ * @deprecated deprecated.
4259
3697
  * @public
4260
3698
  */
4261
- conditions?: (ProjectionCondition)[] | undefined;
3699
+ conditions?: ProjectionCondition[] | undefined;
4262
3700
  /**
4263
3701
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
4264
3702
  * @public
@@ -4274,7 +3712,7 @@ export interface UpdateProjectionInput {
4274
3712
  * @public
4275
3713
  */
4276
3714
  group?: string | undefined;
4277
- fields: (ProjectionField)[];
3715
+ fields: ProjectionField[];
4278
3716
  /**
4279
3717
  * The unique identifier of the tenant when a service token is used.
4280
3718
  * @public
@@ -4371,7 +3809,7 @@ export interface AggregationResult {
4371
3809
  * The list of buckets generated for this aggregation level.
4372
3810
  * @public
4373
3811
  */
4374
- buckets: (AggregationBucket)[];
3812
+ buckets: AggregationBucket[];
4375
3813
  }
4376
3814
  /**
4377
3815
  * @public