@wildix/wda-insights-client 1.1.45 → 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 -471
  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 -464
  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 +13 -9
  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 +13 -9
  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 +13 -9
  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 -727
  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,70 +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 COLLABORATION_ANDROID: "COLLABORATION_ANDROID";
286
- readonly COLLABORATION_IOS: "COLLABORATION_IOS";
287
- readonly COLLABORATION_WEB: "COLLABORATION_WEB";
288
- readonly UNKNOWN: "UNKNOWN";
289
- readonly VOICEBOT: "VOICEBOT";
290
- readonly WILDIX_DEVICE: "WILDIX_DEVICE";
291
- readonly WILDIX_PHONE: "WILDIX_PHONE";
292
- readonly XBEES_ANDROID: "XBEES_ANDROID";
293
- readonly XBEES_IOS: "XBEES_IOS";
294
- readonly XBEES_WEB: "XBEES_WEB";
295
- };
296
- /**
297
- * @public
298
- */
299
- export type CallDevice = typeof CallDevice[keyof typeof CallDevice];
300
107
  /**
301
108
  * @public
302
109
  */
@@ -340,22 +147,9 @@ export interface CallParticipant {
340
147
  * @public
341
148
  */
342
149
  export interface CallFlowNotifications {
343
- destinations?: (CallFlowAttachmentDestination)[] | undefined;
344
- type?: (string)[] | undefined;
150
+ destinations?: CallFlowAttachmentDestination[] | undefined;
151
+ type?: string[] | undefined;
345
152
  }
346
- /**
347
- * @public
348
- * @enum
349
- */
350
- export declare const CallFlowTranscriptionStatus: {
351
- readonly AVAILABLE: "AVAILABLE";
352
- readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
353
- readonly UNAVAILABLE: "UNAVAILABLE";
354
- };
355
- /**
356
- * @public
357
- */
358
- export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[keyof typeof CallFlowTranscriptionStatus];
359
153
  /**
360
154
  * @public
361
155
  */
@@ -408,25 +202,25 @@ export interface CallRecord {
408
202
  * @public
409
203
  */
410
204
  queuePosition?: number | undefined;
411
- tags?: (string)[] | undefined;
412
- flags?: (string)[] | undefined;
205
+ tags?: string[] | undefined;
206
+ flags?: string[] | undefined;
413
207
  callerMos?: string | undefined;
414
208
  calleeMos?: string | undefined;
415
209
  xhoppersConfId?: string | undefined;
416
210
  /**
417
211
  * Consider to use `attachments` instead.
418
212
  *
419
- * @deprecated
213
+ * @deprecated deprecated.
420
214
  * @public
421
215
  */
422
- recordings?: (string)[] | undefined;
216
+ recordings?: string[] | undefined;
423
217
  /**
424
218
  * Consider to use `attachments` instead.
425
219
  *
426
- * @deprecated
220
+ * @deprecated deprecated.
427
221
  * @public
428
222
  */
429
- recordingsData?: (CallFlowRecording)[] | undefined;
223
+ recordingsData?: CallFlowRecording[] | undefined;
430
224
  mergeWith?: string | undefined;
431
225
  splitReason?: string | undefined;
432
226
  splitTransferType?: string | undefined;
@@ -442,45 +236,33 @@ export interface CallRecord {
442
236
  /**
443
237
  * Consider to use `attachments` instead.
444
238
  *
445
- * @deprecated
239
+ * @deprecated deprecated.
446
240
  * @public
447
241
  */
448
242
  attachment?: string | undefined;
449
243
  /**
450
244
  * Consider to use `attachments` instead.
451
245
  *
452
- * @deprecated
246
+ * @deprecated deprecated.
453
247
  * @public
454
248
  */
455
249
  attachmentType?: CallFlowAttachmentType | undefined;
456
250
  /**
457
251
  * Consider to use `attachments` instead.
458
252
  *
459
- * @deprecated
253
+ * @deprecated deprecated.
460
254
  * @public
461
255
  */
462
- attachmentDestinations?: (CallFlowAttachmentDestination)[] | undefined;
463
- attachments?: (CallFlowAttachment)[] | undefined;
256
+ attachmentDestinations?: CallFlowAttachmentDestination[] | undefined;
257
+ attachments?: CallFlowAttachment[] | undefined;
464
258
  notifications?: CallFlowNotifications | undefined;
465
259
  id: string;
466
260
  pbx: string;
467
261
  time: number;
468
262
  company: string;
469
- licenses: (License)[];
263
+ licenses: License[];
470
264
  type: RecordType;
471
265
  }
472
- /**
473
- * @public
474
- * @enum
475
- */
476
- export declare const ChannelAccess: {
477
- readonly PRIVATE: "private";
478
- readonly PUBLIC: "public";
479
- };
480
- /**
481
- * @public
482
- */
483
- export type ChannelAccess = typeof ChannelAccess[keyof typeof ChannelAccess];
484
266
  /**
485
267
  * @public
486
268
  */
@@ -503,32 +285,6 @@ export interface User {
503
285
  createdAt?: string | undefined;
504
286
  updatedAt?: string | undefined;
505
287
  }
506
- /**
507
- * @public
508
- * @enum
509
- */
510
- export declare const ChannelType: {
511
- readonly DIRECT: "direct";
512
- readonly GROUP: "group";
513
- };
514
- /**
515
- * @public
516
- */
517
- export type ChannelType = typeof ChannelType[keyof typeof ChannelType];
518
- /**
519
- * @public
520
- * @enum
521
- */
522
- export declare const ChannelContextEventAttendeeStatus: {
523
- readonly ACCEPTED: "accepted";
524
- readonly DECLINED: "declined";
525
- readonly NONE: "none";
526
- readonly TENTATIVE: "tentative";
527
- };
528
- /**
529
- * @public
530
- */
531
- export type ChannelContextEventAttendeeStatus = typeof ChannelContextEventAttendeeStatus[keyof typeof ChannelContextEventAttendeeStatus];
532
288
  /**
533
289
  * @public
534
290
  */
@@ -546,7 +302,7 @@ export interface ChannelContextEvent {
546
302
  start?: string | undefined;
547
303
  end?: string | undefined;
548
304
  summary?: string | undefined;
549
- attendees?: (ChannelContextEventAttendee)[] | undefined;
305
+ attendees?: ChannelContextEventAttendee[] | undefined;
550
306
  }
551
307
  /**
552
308
  * @public
@@ -558,37 +314,15 @@ export interface ChannelContextPushToTalk {
558
314
  */
559
315
  broadcastId?: string | undefined;
560
316
  }
561
- /**
562
- * @public
563
- * @enum
564
- */
565
- export declare const ChannelContextSource: {
566
- readonly KITE: "kite";
567
- };
568
- /**
569
- * @public
570
- */
571
- export type ChannelContextSource = typeof ChannelContextSource[keyof typeof ChannelContextSource];
572
317
  /**
573
318
  * @public
574
319
  */
575
320
  export interface ChannelContext {
576
321
  source?: ChannelContextSource | undefined;
577
322
  target?: string | undefined;
578
- events?: (ChannelContextEvent)[] | undefined;
323
+ events?: ChannelContextEvent[] | undefined;
579
324
  ptt?: ChannelContextPushToTalk | undefined;
580
325
  }
581
- /**
582
- * @public
583
- * @enum
584
- */
585
- export declare const ChannelWhatsAppStatus: {
586
- readonly CHANNEL_CLOSED: "24h_channel_closed";
587
- };
588
- /**
589
- * @public
590
- */
591
- export type ChannelWhatsAppStatus = typeof ChannelWhatsAppStatus[keyof typeof ChannelWhatsAppStatus];
592
326
  /**
593
327
  * @public
594
328
  */
@@ -635,43 +369,6 @@ export interface Channel {
635
369
  createdBy: string;
636
370
  updatedAt?: string | undefined;
637
371
  }
638
- /**
639
- * @public
640
- * @enum
641
- */
642
- export declare const ChatDirection: {
643
- readonly INBOUND: "INBOUND";
644
- readonly INTERNAL: "INTERNAL";
645
- readonly OUTBOUND: "OUTBOUND";
646
- };
647
- /**
648
- * @public
649
- */
650
- export type ChatDirection = typeof ChatDirection[keyof typeof ChatDirection];
651
- /**
652
- * @public
653
- * @enum
654
- */
655
- export declare const ChatParticipantRole: {
656
- readonly AGENT: "AGENT";
657
- readonly CLIENT: "CLIENT";
658
- };
659
- /**
660
- * @public
661
- */
662
- export type ChatParticipantRole = typeof ChatParticipantRole[keyof typeof ChatParticipantRole];
663
- /**
664
- * @public
665
- * @enum
666
- */
667
- export declare const ChatParticipantType: {
668
- readonly LOCAL: "LOCAL";
669
- readonly REMOTE: "REMOTE";
670
- };
671
- /**
672
- * @public
673
- */
674
- export type ChatParticipantType = typeof ChatParticipantType[keyof typeof ChatParticipantType];
675
372
  /**
676
373
  * @public
677
374
  */
@@ -703,34 +400,6 @@ export interface ChatParticipant {
703
400
  id: string;
704
401
  info: ChatParticipantInfo;
705
402
  }
706
- /**
707
- * @public
708
- * @enum
709
- */
710
- export declare const ChatStatus: {
711
- readonly COMPLETED: "COMPLETED";
712
- readonly MISSED: "MISSED";
713
- readonly WAITFIRSTREPLY: "WAITFIRSTREPLY";
714
- readonly WAITREPLYFROMAGENT: "WAITREPLYFROMAGENT";
715
- readonly WAITREPLYFROMGUEST: "WAITREPLYFROMGUEST";
716
- };
717
- /**
718
- * @public
719
- */
720
- export type ChatStatus = typeof ChatStatus[keyof typeof ChatStatus];
721
- /**
722
- * @public
723
- * @enum
724
- */
725
- export declare const ChatTag: {
726
- readonly SMS: "sms";
727
- readonly TELEPHONY: "telephony";
728
- readonly WHATSAPP: "whatsapp";
729
- };
730
- /**
731
- * @public
732
- */
733
- export type ChatTag = typeof ChatTag[keyof typeof ChatTag];
734
403
  /**
735
404
  * @public
736
405
  */
@@ -756,68 +425,13 @@ export interface ChatRecord {
756
425
  subject?: string | undefined;
757
426
  service?: string | undefined;
758
427
  serviceTitle?: string | undefined;
759
- tags?: (ChatTag)[] | undefined;
428
+ tags?: ChatTag[] | undefined;
760
429
  channel: Channel;
761
430
  status?: ChatStatus | undefined;
762
- participants: (ChatParticipant)[];
431
+ participants: ChatParticipant[];
763
432
  annotationsStatus?: AnnotationsStatus | undefined;
764
433
  type: RecordType;
765
434
  }
766
- /**
767
- * @public
768
- * @enum
769
- */
770
- export declare const ConferenceDirection: {
771
- readonly INBOUND: "INBOUND";
772
- readonly INTERNAL: "INTERNAL";
773
- readonly OUTBOUND: "OUTBOUND";
774
- };
775
- /**
776
- * @public
777
- */
778
- export type ConferenceDirection = typeof ConferenceDirection[keyof typeof ConferenceDirection];
779
- /**
780
- * @public
781
- * @enum
782
- */
783
- export declare const PbxLicenseType: {
784
- readonly BASIC: "basic";
785
- readonly BUSINESS: "business";
786
- readonly ESSENTIAL: "essential";
787
- readonly PREMIUM: "premium";
788
- readonly WIZYCONF: "wizyconf";
789
- };
790
- /**
791
- * @public
792
- */
793
- export type PbxLicenseType = typeof PbxLicenseType[keyof typeof PbxLicenseType];
794
- /**
795
- * @public
796
- * @enum
797
- */
798
- export declare const ConferenceParticipantRole: {
799
- readonly AGENT: "AGENT";
800
- readonly CLIENT: "CLIENT";
801
- };
802
- /**
803
- * @public
804
- */
805
- export type ConferenceParticipantRole = typeof ConferenceParticipantRole[keyof typeof ConferenceParticipantRole];
806
- /**
807
- * @public
808
- * @enum
809
- */
810
- export declare const ConferenceParticipantType: {
811
- readonly EXTERNAL: "EXTERNAL";
812
- readonly EXTERNAL_DIAL_IN: "EXTERNAL_DIAL_IN";
813
- readonly PBX: "PBX";
814
- readonly PBX_SIP: "PBX_SIP";
815
- readonly XBS: "XBS";
816
- };
817
- /**
818
- * @public
819
- */
820
- export type ConferenceParticipantType = typeof ConferenceParticipantType[keyof typeof ConferenceParticipantType];
821
435
  /**
822
436
  * @public
823
437
  */
@@ -858,19 +472,6 @@ export interface ConferenceRecording {
858
472
  start: number;
859
473
  end: number;
860
474
  }
861
- /**
862
- * @public
863
- * @enum
864
- */
865
- export declare const ConferenceTranscriptionStatus: {
866
- readonly AVAILABLE: "AVAILABLE";
867
- readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
868
- readonly UNAVAILABLE: "UNAVAILABLE";
869
- };
870
- /**
871
- * @public
872
- */
873
- export type ConferenceTranscriptionStatus = typeof ConferenceTranscriptionStatus[keyof typeof ConferenceTranscriptionStatus];
874
475
  /**
875
476
  * @public
876
477
  */
@@ -887,8 +488,8 @@ export interface ConferenceRecord {
887
488
  direction: ConferenceDirection;
888
489
  service?: string | undefined;
889
490
  status?: ConversationStatus | undefined;
890
- participants: (ConferenceAnalyticsRecordParticipant)[];
891
- recordings?: (ConferenceRecording)[] | undefined;
491
+ participants: ConferenceAnalyticsRecordParticipant[];
492
+ recordings?: ConferenceRecording[] | undefined;
892
493
  transcriptionStatus: ConferenceTranscriptionStatus;
893
494
  transcriptionLanguage?: string | undefined;
894
495
  transcriptionSeconds?: number | undefined;
@@ -940,7 +541,7 @@ export interface AggregationDurationDefinition {
940
541
  * A custom list of buckets to use for the duration aggregation. If not provided, default buckets will be used.
941
542
  * @public
942
543
  */
943
- buckets?: (DurationGroupBucket)[] | undefined;
544
+ buckets?: DurationGroupBucket[] | undefined;
944
545
  }
945
546
  /**
946
547
  * @public
@@ -1541,6 +1142,10 @@ export declare namespace AggregationDefinition {
1541
1142
  hourOfDay?: never;
1542
1143
  $unknown: [string, any];
1543
1144
  }
1145
+ /**
1146
+ * @deprecated unused in schema-serde mode.
1147
+ *
1148
+ */
1544
1149
  interface Visitor<T> {
1545
1150
  projection: (value: AggregationProjectionDefinition) => T;
1546
1151
  direction: (value: AggregationNoConfigurationDefinition) => T;
@@ -1566,7 +1171,6 @@ export declare namespace AggregationDefinition {
1566
1171
  hourOfDay: (value: AggregationHourOfDayDefinition) => T;
1567
1172
  _: (name: string, value: any) => T;
1568
1173
  }
1569
- const visit: <T>(value: AggregationDefinition, visitor: Visitor<T>) => T;
1570
1174
  }
1571
1175
  /**
1572
1176
  * @public
@@ -1841,6 +1445,10 @@ export declare namespace ListConversationsFilterField {
1841
1445
  projection?: never;
1842
1446
  $unknown: [string, any];
1843
1447
  }
1448
+ /**
1449
+ * @deprecated unused in schema-serde mode.
1450
+ *
1451
+ */
1844
1452
  interface Visitor<T> {
1845
1453
  direction: (value: boolean) => T;
1846
1454
  service: (value: boolean) => T;
@@ -1858,7 +1466,6 @@ export declare namespace ListConversationsFilterField {
1858
1466
  projection: (value: ListConversationsFilterProjectionField) => T;
1859
1467
  _: (name: string, value: any) => T;
1860
1468
  }
1861
- const visit: <T>(value: ListConversationsFilterField, visitor: Visitor<T>) => T;
1862
1469
  }
1863
1470
  /**
1864
1471
  * @public
@@ -1876,24 +1483,6 @@ export interface ListConversationsFilterAbsoluteDate {
1876
1483
  to?: string | undefined;
1877
1484
  timeZone?: string | undefined;
1878
1485
  }
1879
- /**
1880
- * @public
1881
- * @enum
1882
- */
1883
- export declare const ListConversationsFilterPredefinedDateType: {
1884
- readonly LAST_30_DAYS: "LAST_30_DAYS";
1885
- readonly PREVIOUS_MONTH: "PREVIOUS_MONTH";
1886
- readonly PREVIOUS_WEEK: "PREVIOUS_WEEK";
1887
- readonly THIS_MONTH: "THIS_MONTH";
1888
- readonly THIS_QUARTER: "THIS_QUARTER";
1889
- readonly THIS_WEEK: "THIS_WEEK";
1890
- readonly TODAY: "TODAY";
1891
- readonly YESTERDAY: "YESTERDAY";
1892
- };
1893
- /**
1894
- * @public
1895
- */
1896
- export type ListConversationsFilterPredefinedDateType = typeof ListConversationsFilterPredefinedDateType[keyof typeof ListConversationsFilterPredefinedDateType];
1897
1486
  /**
1898
1487
  * @public
1899
1488
  */
@@ -1927,12 +1516,15 @@ export declare namespace ListConversationsFilterDate {
1927
1516
  predefined?: never;
1928
1517
  $unknown: [string, any];
1929
1518
  }
1519
+ /**
1520
+ * @deprecated unused in schema-serde mode.
1521
+ *
1522
+ */
1930
1523
  interface Visitor<T> {
1931
1524
  absolute: (value: ListConversationsFilterAbsoluteDate) => T;
1932
1525
  predefined: (value: ListConversationsFilterPredefinedDate) => T;
1933
1526
  _: (name: string, value: any) => T;
1934
1527
  }
1935
- const visit: <T>(value: ListConversationsFilterDate, visitor: Visitor<T>) => T;
1936
1528
  }
1937
1529
  /**
1938
1530
  * @public
@@ -2018,13 +1610,16 @@ export declare namespace ConversationTarget {
2018
1610
  chat?: never;
2019
1611
  $unknown: [string, any];
2020
1612
  }
1613
+ /**
1614
+ * @deprecated unused in schema-serde mode.
1615
+ *
1616
+ */
2021
1617
  interface Visitor<T> {
2022
1618
  call: (value: CallConversationTarget) => T;
2023
1619
  conference: (value: ConferenceConversationTarget) => T;
2024
1620
  chat: (value: ChatConversationTarget) => T;
2025
1621
  _: (name: string, value: any) => T;
2026
1622
  }
2027
- const visit: <T>(value: ConversationTarget, visitor: Visitor<T>) => T;
2028
1623
  }
2029
1624
  /**
2030
1625
  * @public
@@ -2033,7 +1628,7 @@ export interface ListConversationsFilterInsight {
2033
1628
  projectionId: string;
2034
1629
  fieldId: string;
2035
1630
  match?: string | undefined;
2036
- matchAny?: (string)[] | undefined;
1631
+ matchAny?: string[] | undefined;
2037
1632
  }
2038
1633
  /**
2039
1634
  * @public
@@ -2088,64 +1683,52 @@ export declare namespace ListConversationsFilterParticipant {
2088
1683
  extension?: never;
2089
1684
  $unknown: [string, any];
2090
1685
  }
1686
+ /**
1687
+ * @deprecated unused in schema-serde mode.
1688
+ *
1689
+ */
2091
1690
  interface Visitor<T> {
2092
1691
  email: (value: string) => T;
2093
1692
  phone: (value: string) => T;
2094
1693
  extension: (value: string) => T;
2095
1694
  _: (name: string, value: any) => T;
2096
1695
  }
2097
- const visit: <T>(value: ListConversationsFilterParticipant, visitor: Visitor<T>) => T;
2098
1696
  }
2099
1697
  /**
2100
1698
  * @public
2101
1699
  */
2102
1700
  export interface ListConversationsFilter {
2103
- id?: (ConversationTarget)[] | undefined;
1701
+ id?: ConversationTarget[] | undefined;
2104
1702
  entity?: ListConversationsFilterEntity | undefined;
2105
- participants?: (ListConversationsFilterParticipant)[] | undefined;
2106
- participantsToInclude?: (ListConversationsFilterParticipant)[] | undefined;
2107
- participantsToExclude?: (ListConversationsFilterParticipant)[] | undefined;
2108
- chatbots?: (string)[] | undefined;
2109
- voicebots?: (string)[] | undefined;
2110
- service?: (string)[] | undefined;
2111
- group?: (string)[] | undefined;
2112
- department?: (string)[] | undefined;
2113
- tag?: (string)[] | undefined;
2114
- pbx?: (string)[] | undefined;
2115
- trunk?: (string)[] | undefined;
2116
- queue?: (string)[] | undefined;
2117
- country?: (string)[] | undefined;
2118
- location?: (string)[] | undefined;
2119
- phases?: (string)[] | undefined;
2120
- 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;
2121
1719
  duration?: ListConversationsFilterNumber | undefined;
2122
1720
  interaction?: ListConversationsFilterInteraction | undefined;
2123
1721
  recorded?: boolean | undefined;
2124
1722
  transcribed?: boolean | undefined;
2125
1723
  direction?: ListConversationsFilterDirection | undefined;
2126
- insights?: (ListConversationsFilterInsight)[] | undefined;
1724
+ insights?: ListConversationsFilterInsight[] | undefined;
2127
1725
  channel?: ListConversationsFilterChannel | undefined;
2128
1726
  date?: ListConversationsFilterDate | undefined;
2129
1727
  dayOfWeek?: ListConversationsFilterDateIndex | undefined;
2130
1728
  hourOfDay?: ListConversationsFilterDateIndex | undefined;
2131
- present?: (ListConversationsFilterField)[] | undefined;
2132
- absent?: (ListConversationsFilterField)[] | undefined;
1729
+ present?: ListConversationsFilterField[] | undefined;
1730
+ absent?: ListConversationsFilterField[] | undefined;
2133
1731
  }
2134
- /**
2135
- * @public
2136
- * @enum
2137
- */
2138
- export declare const AggregationDateInterval: {
2139
- readonly DAY: "day";
2140
- readonly HOUR: "hour";
2141
- readonly MINUTE: "minute";
2142
- readonly MONTH: "month";
2143
- readonly WEEK: "week";
2144
- };
2145
- /**
2146
- * @public
2147
- */
2148
- export type AggregationDateInterval = typeof AggregationDateInterval[keyof typeof AggregationDateInterval];
2149
1732
  /**
2150
1733
  * @public
2151
1734
  */
@@ -2177,23 +1760,11 @@ export interface ConversationPlaybackState {
2177
1760
  * @public
2178
1761
  */
2179
1762
  export interface ConversationState {
2180
- playlists?: (string)[] | undefined;
1763
+ playlists?: string[] | undefined;
2181
1764
  playback?: ConversationPlaybackState | undefined;
2182
1765
  firstWatchedAt?: string | undefined;
2183
1766
  lastWatchedAt?: string | undefined;
2184
1767
  }
2185
- /**
2186
- * @public
2187
- * @enum
2188
- */
2189
- export declare const DashboardPermission: {
2190
- readonly EDIT: "edit";
2191
- readonly VIEW: "view";
2192
- };
2193
- /**
2194
- * @public
2195
- */
2196
- export type DashboardPermission = typeof DashboardPermission[keyof typeof DashboardPermission];
2197
1768
  /**
2198
1769
  * @public
2199
1770
  */
@@ -2220,12 +1791,15 @@ export declare namespace DashboardPrincipal {
2220
1791
  groupId?: never;
2221
1792
  $unknown: [string, any];
2222
1793
  }
1794
+ /**
1795
+ * @deprecated unused in schema-serde mode.
1796
+ *
1797
+ */
2223
1798
  interface Visitor<T> {
2224
1799
  userId: (value: string) => T;
2225
1800
  groupId: (value: string) => T;
2226
1801
  _: (name: string, value: any) => T;
2227
1802
  }
2228
- const visit: <T>(value: DashboardPrincipal, visitor: Visitor<T>) => T;
2229
1803
  }
2230
1804
  /**
2231
1805
  * @public
@@ -2234,24 +1808,12 @@ export interface DashboardGrant {
2234
1808
  permission: DashboardPermission;
2235
1809
  principal: DashboardPrincipal;
2236
1810
  }
2237
- /**
2238
- * @public
2239
- * @enum
2240
- */
2241
- export declare const DashboardVisibility: {
2242
- readonly EXPLICIT: "explicit";
2243
- readonly ORGANIZATION: "organization";
2244
- };
2245
- /**
2246
- * @public
2247
- */
2248
- export type DashboardVisibility = typeof DashboardVisibility[keyof typeof DashboardVisibility];
2249
1811
  /**
2250
1812
  * @public
2251
1813
  */
2252
1814
  export interface DashboardAccess {
2253
1815
  visibility?: DashboardVisibility | undefined;
2254
- grants?: (DashboardGrant)[] | undefined;
1816
+ grants?: DashboardGrant[] | undefined;
2255
1817
  }
2256
1818
  /**
2257
1819
  * @public
@@ -2277,14 +1839,14 @@ export interface DashboardVisual {
2277
1839
  export interface DashboardSheet {
2278
1840
  id: string;
2279
1841
  name: string;
2280
- visuals: (DashboardVisual)[];
1842
+ visuals: DashboardVisual[];
2281
1843
  filter?: ListConversationsFilter | undefined;
2282
1844
  }
2283
1845
  /**
2284
1846
  * @public
2285
1847
  */
2286
1848
  export interface DashboardDefinition {
2287
- sheets?: (DashboardSheet)[] | undefined;
1849
+ sheets?: DashboardSheet[] | undefined;
2288
1850
  filter?: ListConversationsFilter | undefined;
2289
1851
  }
2290
1852
  /**
@@ -2378,18 +1940,6 @@ export interface ListFiltersItem {
2378
1940
  export interface CreateFilterOutput {
2379
1941
  item: ListFiltersItem;
2380
1942
  }
2381
- /**
2382
- * @public
2383
- * @enum
2384
- */
2385
- export declare const PlaylistPermission: {
2386
- readonly EDIT: "edit";
2387
- readonly VIEW: "view";
2388
- };
2389
- /**
2390
- * @public
2391
- */
2392
- export type PlaylistPermission = typeof PlaylistPermission[keyof typeof PlaylistPermission];
2393
1943
  /**
2394
1944
  * @public
2395
1945
  */
@@ -2416,12 +1966,15 @@ export declare namespace PlaylistPrincipal {
2416
1966
  groupId?: never;
2417
1967
  $unknown: [string, any];
2418
1968
  }
1969
+ /**
1970
+ * @deprecated unused in schema-serde mode.
1971
+ *
1972
+ */
2419
1973
  interface Visitor<T> {
2420
1974
  userId: (value: string) => T;
2421
1975
  groupId: (value: string) => T;
2422
1976
  _: (name: string, value: any) => T;
2423
1977
  }
2424
- const visit: <T>(value: PlaylistPrincipal, visitor: Visitor<T>) => T;
2425
1978
  }
2426
1979
  /**
2427
1980
  * @public
@@ -2430,24 +1983,12 @@ export interface PlaylistGrant {
2430
1983
  permission: PlaylistPermission;
2431
1984
  principal: PlaylistPrincipal;
2432
1985
  }
2433
- /**
2434
- * @public
2435
- * @enum
2436
- */
2437
- export declare const PlaylistVisibility: {
2438
- readonly EXPLICIT: "explicit";
2439
- readonly ORGANIZATION: "organization";
2440
- };
2441
- /**
2442
- * @public
2443
- */
2444
- export type PlaylistVisibility = typeof PlaylistVisibility[keyof typeof PlaylistVisibility];
2445
1986
  /**
2446
1987
  * @public
2447
1988
  */
2448
1989
  export interface PlaylistAccess {
2449
1990
  visibility?: PlaylistVisibility | undefined;
2450
- grants?: (PlaylistGrant)[] | undefined;
1991
+ grants?: PlaylistGrant[] | undefined;
2451
1992
  }
2452
1993
  /**
2453
1994
  * @public
@@ -2491,7 +2032,7 @@ export interface CreatePlaylistOutput {
2491
2032
  * @public
2492
2033
  */
2493
2034
  export interface ProjectionDirectionCondition {
2494
- equals: (CallDirection)[];
2035
+ equals: CallDirection[];
2495
2036
  }
2496
2037
  /**
2497
2038
  * @public
@@ -2500,32 +2041,19 @@ export interface ProjectionDurationCondition {
2500
2041
  minimum: number;
2501
2042
  maximum: number;
2502
2043
  }
2503
- /**
2504
- * @public
2505
- * @enum
2506
- */
2507
- export declare const ProjectionEntityConditionValue: {
2508
- readonly CALL: "call";
2509
- readonly CHAT: "chat";
2510
- readonly CONFERENCE: "conference";
2511
- };
2512
- /**
2513
- * @public
2514
- */
2515
- export type ProjectionEntityConditionValue = typeof ProjectionEntityConditionValue[keyof typeof ProjectionEntityConditionValue];
2516
2044
  /**
2517
2045
  * @public
2518
2046
  */
2519
2047
  export interface ProjectionEntityCondition {
2520
- equals: (ProjectionEntityConditionValue)[];
2048
+ equals: ProjectionEntityConditionValue[];
2521
2049
  }
2522
2050
  /**
2523
2051
  * @public
2524
2052
  */
2525
2053
  export interface ProjectionParticipantsCondition {
2526
- emails?: (string)[] | undefined;
2527
- extensions?: (string)[] | undefined;
2528
- groups?: (string)[] | undefined;
2054
+ emails?: string[] | undefined;
2055
+ extensions?: string[] | undefined;
2056
+ groups?: string[] | undefined;
2529
2057
  }
2530
2058
  /**
2531
2059
  * @public
@@ -2573,6 +2101,10 @@ export declare namespace ProjectionCondition {
2573
2101
  duration?: never;
2574
2102
  $unknown: [string, any];
2575
2103
  }
2104
+ /**
2105
+ * @deprecated unused in schema-serde mode.
2106
+ *
2107
+ */
2576
2108
  interface Visitor<T> {
2577
2109
  entity: (value: ProjectionEntityCondition) => T;
2578
2110
  direction: (value: ProjectionDirectionCondition) => T;
@@ -2580,7 +2112,6 @@ export declare namespace ProjectionCondition {
2580
2112
  duration: (value: ProjectionDurationCondition) => T;
2581
2113
  _: (name: string, value: any) => T;
2582
2114
  }
2583
- const visit: <T>(value: ProjectionCondition, visitor: Visitor<T>) => T;
2584
2115
  }
2585
2116
  /**
2586
2117
  * @public
@@ -2591,14 +2122,14 @@ export interface ProjectionMultilineParameter {
2591
2122
  * @public
2592
2123
  */
2593
2124
  export interface ProjectionSelectionParameter {
2594
- options: (string)[];
2125
+ options: string[];
2595
2126
  multi?: boolean | undefined;
2596
2127
  adaptive?: boolean | undefined;
2597
2128
  /**
2598
2129
  * Options generated by AI when adaptive mode was enabled.
2599
2130
  * @public
2600
2131
  */
2601
- adaptiveOptions?: (string)[] | undefined;
2132
+ adaptiveOptions?: string[] | undefined;
2602
2133
  }
2603
2134
  /**
2604
2135
  * @public
@@ -2640,13 +2171,16 @@ export declare namespace ProjectionParameter {
2640
2171
  selection?: never;
2641
2172
  $unknown: [string, any];
2642
2173
  }
2174
+ /**
2175
+ * @deprecated unused in schema-serde mode.
2176
+ *
2177
+ */
2643
2178
  interface Visitor<T> {
2644
2179
  text: (value: ProjectionTextParameter) => T;
2645
2180
  multiline: (value: ProjectionMultilineParameter) => T;
2646
2181
  selection: (value: ProjectionSelectionParameter) => T;
2647
2182
  _: (name: string, value: any) => T;
2648
2183
  }
2649
- const visit: <T>(value: ProjectionParameter, visitor: Visitor<T>) => T;
2650
2184
  }
2651
2185
  /**
2652
2186
  * @public
@@ -2670,7 +2204,7 @@ export interface CreateProjectionInput {
2670
2204
  /**
2671
2205
  * Compatibility field for legacy clients. Use `category` instead.
2672
2206
  *
2673
- * @deprecated
2207
+ * @deprecated deprecated.
2674
2208
  * @public
2675
2209
  */
2676
2210
  categoryId?: string | undefined;
@@ -2680,10 +2214,10 @@ export interface CreateProjectionInput {
2680
2214
  /**
2681
2215
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
2682
2216
  *
2683
- * @deprecated
2217
+ * @deprecated deprecated.
2684
2218
  * @public
2685
2219
  */
2686
- conditions?: (ProjectionCondition)[] | undefined;
2220
+ conditions?: ProjectionCondition[] | undefined;
2687
2221
  /**
2688
2222
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
2689
2223
  * @public
@@ -2699,7 +2233,7 @@ export interface CreateProjectionInput {
2699
2233
  * @public
2700
2234
  */
2701
2235
  group?: string | undefined;
2702
- fields: (ProjectionField)[];
2236
+ fields: ProjectionField[];
2703
2237
  /**
2704
2238
  * The unique identifier of the tenant when a service token is used.
2705
2239
  * @public
@@ -2718,19 +2252,6 @@ export interface ProjectionMetadata {
2718
2252
  */
2719
2253
  customized?: boolean | undefined;
2720
2254
  }
2721
- /**
2722
- * @public
2723
- * @enum
2724
- */
2725
- export declare const ProjectionStatus: {
2726
- readonly DISABLED: "DISABLED";
2727
- readonly ENABLED: "ENABLED";
2728
- readonly PAUSED: "PAUSED";
2729
- };
2730
- /**
2731
- * @public
2732
- */
2733
- export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionStatus];
2734
2255
  /**
2735
2256
  * @public
2736
2257
  */
@@ -2743,7 +2264,7 @@ export interface Projection {
2743
2264
  /**
2744
2265
  * Compatibility field for legacy clients. Use `category` instead.
2745
2266
  *
2746
- * @deprecated
2267
+ * @deprecated deprecated.
2747
2268
  * @public
2748
2269
  */
2749
2270
  categoryId?: string | undefined;
@@ -2753,10 +2274,10 @@ export interface Projection {
2753
2274
  /**
2754
2275
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
2755
2276
  *
2756
- * @deprecated
2277
+ * @deprecated deprecated.
2757
2278
  * @public
2758
2279
  */
2759
- conditions?: (ProjectionCondition)[] | undefined;
2280
+ conditions?: ProjectionCondition[] | undefined;
2760
2281
  /**
2761
2282
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
2762
2283
  * @public
@@ -2772,7 +2293,7 @@ export interface Projection {
2772
2293
  * @public
2773
2294
  */
2774
2295
  group?: string | undefined;
2775
- fields: (ProjectionField)[];
2296
+ fields: ProjectionField[];
2776
2297
  id: string;
2777
2298
  status: ProjectionStatus;
2778
2299
  version: number;
@@ -2815,7 +2336,7 @@ export interface CreateProjectionsCategoryOutput {
2815
2336
  * @public
2816
2337
  */
2817
2338
  export interface DashboardAccessNotify {
2818
- emails: (string)[];
2339
+ emails: string[];
2819
2340
  message?: string | undefined;
2820
2341
  }
2821
2342
  /**
@@ -2963,17 +2484,6 @@ export interface EnableProjectionInput {
2963
2484
  export interface EnableProjectionOutput {
2964
2485
  projection: Projection;
2965
2486
  }
2966
- /**
2967
- * @public
2968
- */
2969
- export declare class FilterNotFoundException extends __BaseException {
2970
- readonly name: "FilterNotFoundException";
2971
- readonly $fault: "client";
2972
- /**
2973
- * @internal
2974
- */
2975
- constructor(opts: __ExceptionOptionType<FilterNotFoundException, __BaseException>);
2976
- }
2977
2487
  /**
2978
2488
  * @public
2979
2489
  */
@@ -3008,7 +2518,7 @@ export interface FlatAggregationResult {
3008
2518
  * The list of buckets generated for this insight.
3009
2519
  * @public
3010
2520
  */
3011
- buckets: (FlatAggregationBucket)[];
2521
+ buckets: FlatAggregationBucket[];
3012
2522
  }
3013
2523
  /**
3014
2524
  * @public
@@ -3046,7 +2556,7 @@ export interface InsightsInterruptionsChunk {
3046
2556
  * @public
3047
2557
  */
3048
2558
  export interface InsightsInterruptions {
3049
- chunks?: (InsightsInterruptionsChunk)[] | undefined;
2559
+ chunks?: InsightsInterruptionsChunk[] | undefined;
3050
2560
  }
3051
2561
  /**
3052
2562
  * @public
@@ -3059,7 +2569,7 @@ export interface InsightsNonTalkTimeChunk {
3059
2569
  * @public
3060
2570
  */
3061
2571
  export interface InsightsNonTalkTime {
3062
- chunks?: (InsightsNonTalkTimeChunk)[] | undefined;
2572
+ chunks?: InsightsNonTalkTimeChunk[] | undefined;
3063
2573
  }
3064
2574
  /**
3065
2575
  * @public
@@ -3082,15 +2592,15 @@ export interface InsightsSentimentParticipantScore {
3082
2592
  */
3083
2593
  export interface InsightsSentimentScoreByPeriodChunk {
3084
2594
  score: number;
3085
- participants?: (InsightsSentimentParticipantScore)[] | undefined;
2595
+ participants?: InsightsSentimentParticipantScore[] | undefined;
3086
2596
  }
3087
2597
  /**
3088
2598
  * @public
3089
2599
  */
3090
2600
  export interface InsightsSentiment {
3091
2601
  score?: number | undefined;
3092
- scoreByParticipant?: (InsightsSentimentScoreByParticipantChunk)[] | undefined;
3093
- scoreByPeriod?: (InsightsSentimentScoreByPeriodChunk)[] | undefined;
2602
+ scoreByParticipant?: InsightsSentimentScoreByParticipantChunk[] | undefined;
2603
+ scoreByPeriod?: InsightsSentimentScoreByPeriodChunk[] | undefined;
3094
2604
  }
3095
2605
  /**
3096
2606
  * @public
@@ -3103,7 +2613,7 @@ export interface InsightsTalkSpeedChunk {
3103
2613
  * @public
3104
2614
  */
3105
2615
  export interface InsightsCharacteristicsTalkSpeed {
3106
- detailsByParticipant?: (InsightsTalkSpeedChunk)[] | undefined;
2616
+ detailsByParticipant?: InsightsTalkSpeedChunk[] | undefined;
3107
2617
  }
3108
2618
  /**
3109
2619
  * @public
@@ -3116,7 +2626,7 @@ export interface InsightsTalkTimeChunk {
3116
2626
  * @public
3117
2627
  */
3118
2628
  export interface InsightsTalkTime {
3119
- detailsByParticipant?: (InsightsTalkTimeChunk)[] | undefined;
2629
+ detailsByParticipant?: InsightsTalkTimeChunk[] | undefined;
3120
2630
  }
3121
2631
  /**
3122
2632
  * @public
@@ -3129,22 +2639,6 @@ export interface InsightsCharacteristics {
3129
2639
  talkSpeed?: InsightsCharacteristicsTalkSpeed | undefined;
3130
2640
  talkTime?: InsightsTalkTime | undefined;
3131
2641
  }
3132
- /**
3133
- * @public
3134
- * @enum
3135
- */
3136
- export declare const InsightsStatus: {
3137
- readonly FAILED: "FAILED";
3138
- readonly NONE: "NONE";
3139
- readonly SCHEDULED: "SCHEDULED";
3140
- readonly STARTED: "STARTED";
3141
- readonly SUCCEEDED: "SUCCEEDED";
3142
- readonly UNAVAILABLE: "UNAVAILABLE";
3143
- };
3144
- /**
3145
- * @public
3146
- */
3147
- export type InsightsStatus = typeof InsightsStatus[keyof typeof InsightsStatus];
3148
2642
  /**
3149
2643
  * @public
3150
2644
  */
@@ -3168,19 +2662,6 @@ export interface ProjectionInsightsField {
3168
2662
  name: string;
3169
2663
  value: __DocumentType;
3170
2664
  }
3171
- /**
3172
- * @public
3173
- * @enum
3174
- */
3175
- export declare const InsightsReason: {
3176
- readonly CONDITIONS_NOT_MATCH: "CONDITIONS_NOT_MATCH";
3177
- readonly INTERNAL_ERROR: "INTERNAL_ERROR";
3178
- readonly TRANSCRIPTION_TOO_SMALL: "TRANSCRIPTION_TOO_SMALL";
3179
- };
3180
- /**
3181
- * @public
3182
- */
3183
- export type InsightsReason = typeof InsightsReason[keyof typeof InsightsReason];
3184
2665
  /**
3185
2666
  * @public
3186
2667
  */
@@ -3198,14 +2679,14 @@ export interface ProjectionInsights {
3198
2679
  * @public
3199
2680
  */
3200
2681
  reason?: InsightsReason | undefined;
3201
- fields: (ProjectionInsightsField)[];
2682
+ fields: ProjectionInsightsField[];
3202
2683
  }
3203
2684
  /**
3204
2685
  * @public
3205
2686
  */
3206
2687
  export interface GetCallInsightsOutput {
3207
2688
  status: InsightsStatus;
3208
- insights?: (ProjectionInsights)[] | undefined;
2689
+ insights?: ProjectionInsights[] | undefined;
3209
2690
  }
3210
2691
  /**
3211
2692
  * @public
@@ -3247,22 +2728,22 @@ export interface TranscriptionSummaryCsat {
3247
2728
  export interface TranscriptionSummaryJson {
3248
2729
  callBriefVeryShortTitle?: string | undefined;
3249
2730
  callBrief?: string | undefined;
3250
- customerInsights?: (string)[] | undefined;
3251
- keyPoints?: (string)[] | undefined;
3252
- competitiveInformation?: (string)[] | undefined;
3253
- implementationTimeline?: (string)[] | undefined;
3254
- budget?: (string)[] | undefined;
3255
- customerResponse?: (string)[] | undefined;
3256
- salesProposals?: (string)[] | undefined;
3257
- actionItems?: (string)[] | undefined;
3258
- 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;
3259
2740
  csat?: TranscriptionSummaryCsat | undefined;
3260
- topics?: (string)[] | undefined;
3261
- review?: (string)[] | undefined;
3262
- progress?: (string)[] | undefined;
3263
- issues?: (string)[] | undefined;
3264
- decisions?: (string)[] | undefined;
3265
- 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;
3266
2747
  }
3267
2748
  /**
3268
2749
  * @public
@@ -3291,7 +2772,7 @@ export interface GetChatInsightsInput {
3291
2772
  */
3292
2773
  export interface GetChatInsightsOutput {
3293
2774
  status: InsightsStatus;
3294
- insights?: (ProjectionInsights)[] | undefined;
2775
+ insights?: ProjectionInsights[] | undefined;
3295
2776
  }
3296
2777
  /**
3297
2778
  * @public
@@ -3337,24 +2818,7 @@ export interface GetConferenceInsightsInput {
3337
2818
  */
3338
2819
  export interface GetConferenceInsightsOutput {
3339
2820
  status: InsightsStatus;
3340
- insights?: (ProjectionInsights)[] | undefined;
3341
- }
3342
- /**
3343
- * @public
3344
- * @enum
3345
- */
3346
- export declare const ConversationFileCategory: {
3347
- readonly GENERAL: "channels";
3348
- readonly RECORDING: "recordings";
3349
- readonly WIZY_RECORDING: "wizyconfRecordings";
3350
- };
3351
- /**
3352
- * @public
3353
- */
3354
- export type ConversationFileCategory = typeof ConversationFileCategory[keyof typeof ConversationFileCategory];
3355
- export declare enum DownloadStrategy {
3356
- DEFAULT = 0,
3357
- DOWNLOAD = 1
2821
+ insights?: ProjectionInsights[] | undefined;
3358
2822
  }
3359
2823
  /**
3360
2824
  * @public
@@ -3387,17 +2851,6 @@ export interface GetConferenceRecordingPresignedDownloadUrlOutput {
3387
2851
  */
3388
2852
  presignedDownloadUrl: string;
3389
2853
  }
3390
- /**
3391
- * @public
3392
- */
3393
- export declare class FileNotFoundException extends __BaseException {
3394
- readonly name: "FileNotFoundException";
3395
- readonly $fault: "client";
3396
- /**
3397
- * @internal
3398
- */
3399
- constructor(opts: __ExceptionOptionType<FileNotFoundException, __BaseException>);
3400
- }
3401
2854
  /**
3402
2855
  * @public
3403
2856
  */
@@ -3449,13 +2902,13 @@ export interface ConferenceTimeFramesChunk {
3449
2902
  */
3450
2903
  export interface ConferenceTimeFramesListItem {
3451
2904
  jid: string;
3452
- frames: (ConferenceTimeFramesChunk)[];
2905
+ frames: ConferenceTimeFramesChunk[];
3453
2906
  }
3454
2907
  /**
3455
2908
  * @public
3456
2909
  */
3457
2910
  export interface GetConferenceTimeFramesOutput {
3458
- timeFrames?: (ConferenceTimeFramesListItem)[] | undefined;
2911
+ timeFrames?: ConferenceTimeFramesListItem[] | undefined;
3459
2912
  }
3460
2913
  /**
3461
2914
  * @public
@@ -3519,6 +2972,7 @@ export interface GetProjectionOutput {
3519
2972
  projection: Projection;
3520
2973
  }
3521
2974
  /**
2975
+ * @deprecated deprecated.
3522
2976
  * @public
3523
2977
  */
3524
2978
  export interface InsightsBucket {
@@ -3539,6 +2993,7 @@ export interface InsightsBucket {
3539
2993
  filter?: ListConversationsFilter | undefined;
3540
2994
  }
3541
2995
  /**
2996
+ * @deprecated deprecated.
3542
2997
  * @public
3543
2998
  */
3544
2999
  export interface InsightResult {
@@ -3546,10 +3001,10 @@ export interface InsightResult {
3546
3001
  /**
3547
3002
  * The list of buckets generated for this insight.
3548
3003
  *
3549
- * @deprecated
3004
+ * @deprecated deprecated.
3550
3005
  * @public
3551
3006
  */
3552
- buckets: (InsightsBucket)[];
3007
+ buckets: InsightsBucket[];
3553
3008
  }
3554
3009
  /**
3555
3010
  * @public
@@ -3598,13 +3053,16 @@ export declare namespace ListConversationsItemEvent {
3598
3053
  chat?: never;
3599
3054
  $unknown: [string, any];
3600
3055
  }
3056
+ /**
3057
+ * @deprecated unused in schema-serde mode.
3058
+ *
3059
+ */
3601
3060
  interface Visitor<T> {
3602
3061
  call: (value: CallRecord) => T;
3603
3062
  conference: (value: ConferenceRecord) => T;
3604
3063
  chat: (value: ChatRecord) => T;
3605
3064
  _: (name: string, value: any) => T;
3606
3065
  }
3607
- const visit: <T>(value: ListConversationsItemEvent, visitor: Visitor<T>) => T;
3608
3066
  }
3609
3067
  /**
3610
3068
  * @public
@@ -3626,7 +3084,7 @@ export interface ListConversationsItemHighlightTranscriptionItem {
3626
3084
  * @public
3627
3085
  */
3628
3086
  export interface ListConversationsItemHighlight {
3629
- transcription?: (ListConversationsItemHighlightTranscriptionItem)[] | undefined;
3087
+ transcription?: ListConversationsItemHighlightTranscriptionItem[] | undefined;
3630
3088
  summary?: ListConversationsItemHighlightSummary | undefined;
3631
3089
  subject?: string | undefined;
3632
3090
  }
@@ -3679,7 +3137,7 @@ export interface ListConversationsItemSummary {
3679
3137
  status: InsightsStatus;
3680
3138
  title?: string | undefined;
3681
3139
  brief?: string | undefined;
3682
- insights?: (ListConversationsItemInsight)[] | undefined;
3140
+ insights?: ListConversationsItemInsight[] | undefined;
3683
3141
  language?: string | undefined;
3684
3142
  }
3685
3143
  /**
@@ -3695,7 +3153,7 @@ export interface ListConversationsItem {
3695
3153
  * @public
3696
3154
  */
3697
3155
  export interface ListConversationsOutput {
3698
- items: (ListConversationsItem)[];
3156
+ items: ListConversationsItem[];
3699
3157
  /**
3700
3158
  * A temporary parameter which would be removed in next updates.
3701
3159
  * @public
@@ -3711,7 +3169,7 @@ export interface ListConversationsAggregationsInput {
3711
3169
  * A list of insights to select. Default - all projections, direction and duration.
3712
3170
  * @public
3713
3171
  */
3714
- insights?: (AggregationDefinition)[] | undefined;
3172
+ insights?: AggregationDefinition[] | undefined;
3715
3173
  filter?: ListConversationsFilter | undefined;
3716
3174
  }
3717
3175
  /**
@@ -3727,7 +3185,7 @@ export interface ListConversationsAggregationsOutput {
3727
3185
  * Top-level distribution buckets as per the first grouping. Each bucket can contain nested child buckets for subsequent groupings.
3728
3186
  * @public
3729
3187
  */
3730
- result?: (FlatAggregationResult)[] | undefined;
3188
+ result?: FlatAggregationResult[] | undefined;
3731
3189
  }
3732
3190
  /**
3733
3191
  * @public
@@ -3738,7 +3196,7 @@ export interface ListConversationsInsightsInput {
3738
3196
  * A list of insights to select. Default - all projections, direction and duration.
3739
3197
  * @public
3740
3198
  */
3741
- insights?: (AggregationDefinition)[] | undefined;
3199
+ insights?: AggregationDefinition[] | undefined;
3742
3200
  filter?: ListConversationsFilter | undefined;
3743
3201
  }
3744
3202
  /**
@@ -3753,17 +3211,17 @@ export interface ListConversationsInsightsOutput {
3753
3211
  /**
3754
3212
  * Top-level distribution buckets as per the first grouping. Each bucket can contain nested child buckets for subsequent groupings.
3755
3213
  *
3756
- * @deprecated
3214
+ * @deprecated deprecated.
3757
3215
  * @public
3758
3216
  */
3759
- result?: (InsightResult)[] | undefined;
3217
+ result?: InsightResult[] | undefined;
3760
3218
  }
3761
3219
  /**
3762
3220
  * @public
3763
3221
  */
3764
3222
  export interface ListConversationsInsightsAggregationsInput {
3765
3223
  company?: string | undefined;
3766
- aggregations: (AggregationDefinition)[];
3224
+ aggregations: AggregationDefinition[];
3767
3225
  filter?: ListConversationsFilter | undefined;
3768
3226
  }
3769
3227
  /**
@@ -3771,7 +3229,7 @@ export interface ListConversationsInsightsAggregationsInput {
3771
3229
  */
3772
3230
  export interface ListConversationsNestedAggregationsInput {
3773
3231
  company?: string | undefined;
3774
- aggregations: (AggregationDefinition)[];
3232
+ aggregations: AggregationDefinition[];
3775
3233
  filter?: ListConversationsFilter | undefined;
3776
3234
  }
3777
3235
  /**
@@ -3793,7 +3251,7 @@ export interface ListDashboardsInput {
3793
3251
  * @public
3794
3252
  */
3795
3253
  export interface ListDashboardsOutput {
3796
- dashboards: (Dashboard)[];
3254
+ dashboards: Dashboard[];
3797
3255
  }
3798
3256
  /**
3799
3257
  * @public
@@ -3814,7 +3272,7 @@ export interface ListFiltersInput {
3814
3272
  * @public
3815
3273
  */
3816
3274
  export interface ListFiltersOutput {
3817
- filters: (ListFiltersItem)[];
3275
+ filters: ListFiltersItem[];
3818
3276
  }
3819
3277
  /**
3820
3278
  * @public
@@ -3835,8 +3293,8 @@ export interface ListPinnedDashboardsInput {
3835
3293
  * @public
3836
3294
  */
3837
3295
  export interface ListPinnedDashboardsOutput {
3838
- pinnedDashboardsIds: (string)[];
3839
- pinnedDashboards: (Dashboard)[];
3296
+ pinnedDashboardsIds: string[];
3297
+ pinnedDashboards: Dashboard[];
3840
3298
  }
3841
3299
  /**
3842
3300
  * @public
@@ -3855,19 +3313,6 @@ export interface ListPlaylistItemsInput {
3855
3313
  playlistId: string;
3856
3314
  exclusiveStartKey?: string | undefined;
3857
3315
  }
3858
- /**
3859
- * @public
3860
- * @enum
3861
- */
3862
- export declare const PlaylistItemStatus: {
3863
- readonly AVAILABLE: "AVAILABLE";
3864
- readonly NO_ACCESS: "NO_ACCESS";
3865
- readonly UNAVAILABLE: "UNAVAILABLE";
3866
- };
3867
- /**
3868
- * @public
3869
- */
3870
- export type PlaylistItemStatus = typeof PlaylistItemStatus[keyof typeof PlaylistItemStatus];
3871
3316
  /**
3872
3317
  * @public
3873
3318
  */
@@ -3884,7 +3329,7 @@ export interface PlaylistItem {
3884
3329
  * @public
3885
3330
  */
3886
3331
  export interface ListPlaylistItemsOutput {
3887
- items: (PlaylistItem)[];
3332
+ items: PlaylistItem[];
3888
3333
  lastEvaluatedKey?: string | undefined;
3889
3334
  }
3890
3335
  /**
@@ -3906,7 +3351,7 @@ export interface ListPlaylistsInput {
3906
3351
  * @public
3907
3352
  */
3908
3353
  export interface ListPlaylistsOutput {
3909
- playlists: (Playlist)[];
3354
+ playlists: Playlist[];
3910
3355
  }
3911
3356
  /**
3912
3357
  * @public
@@ -3922,12 +3367,12 @@ export interface ListProjectionsInput {
3922
3367
  * @public
3923
3368
  */
3924
3369
  export interface ListProjectionsOutput {
3925
- projections: (Projection)[];
3370
+ projections: Projection[];
3926
3371
  /**
3927
3372
  * Compatibility field for legacy clients. Categories are simulated from projection `category`/`categoryId` values.
3928
3373
  * @public
3929
3374
  */
3930
- categories?: (ProjectionsCategory)[] | undefined;
3375
+ categories?: ProjectionsCategory[] | undefined;
3931
3376
  }
3932
3377
  /**
3933
3378
  * @public
@@ -3958,8 +3403,8 @@ export interface WatchItem {
3958
3403
  * @public
3959
3404
  */
3960
3405
  export interface ListWatchHistoryOutput {
3961
- items: (ListConversationsItem)[];
3962
- itemsState: (WatchItem)[];
3406
+ items: ListConversationsItem[];
3407
+ itemsState: WatchItem[];
3963
3408
  lastEvaluatedKey?: string | undefined;
3964
3409
  }
3965
3410
  /**
@@ -3983,7 +3428,7 @@ export interface PauseProjectionOutput {
3983
3428
  * @public
3984
3429
  */
3985
3430
  export interface PlaylistAccessNotify {
3986
- emails: (string)[];
3431
+ emails: string[];
3987
3432
  message?: string | undefined;
3988
3433
  }
3989
3434
  /**
@@ -4171,7 +3616,7 @@ export interface UpdatePinnedDashboardsInput {
4171
3616
  * @public
4172
3617
  */
4173
3618
  user?: string | undefined;
4174
- pinned: (string)[];
3619
+ pinned: string[];
4175
3620
  }
4176
3621
  /**
4177
3622
  * @public
@@ -4238,7 +3683,7 @@ export interface UpdateProjectionInput {
4238
3683
  /**
4239
3684
  * Compatibility field for legacy clients. Use `category` instead.
4240
3685
  *
4241
- * @deprecated
3686
+ * @deprecated deprecated.
4242
3687
  * @public
4243
3688
  */
4244
3689
  categoryId?: string | undefined;
@@ -4248,10 +3693,10 @@ export interface UpdateProjectionInput {
4248
3693
  /**
4249
3694
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
4250
3695
  *
4251
- * @deprecated
3696
+ * @deprecated deprecated.
4252
3697
  * @public
4253
3698
  */
4254
- conditions?: (ProjectionCondition)[] | undefined;
3699
+ conditions?: ProjectionCondition[] | undefined;
4255
3700
  /**
4256
3701
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
4257
3702
  * @public
@@ -4267,7 +3712,7 @@ export interface UpdateProjectionInput {
4267
3712
  * @public
4268
3713
  */
4269
3714
  group?: string | undefined;
4270
- fields: (ProjectionField)[];
3715
+ fields: ProjectionField[];
4271
3716
  /**
4272
3717
  * The unique identifier of the tenant when a service token is used.
4273
3718
  * @public
@@ -4364,7 +3809,7 @@ export interface AggregationResult {
4364
3809
  * The list of buckets generated for this aggregation level.
4365
3810
  * @public
4366
3811
  */
4367
- buckets: (AggregationBucket)[];
3812
+ buckets: AggregationBucket[];
4368
3813
  }
4369
3814
  /**
4370
3815
  * @public