@wildix/wda-insights-client 1.1.46 → 1.1.47

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 +61 -39
  154. package/dist-types/commands/CreateFilterCommand.d.ts +9 -7
  155. package/dist-types/commands/CreatePlaylistCommand.d.ts +9 -7
  156. package/dist-types/commands/CreateProjectionCommand.d.ts +51 -39
  157. package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +10 -8
  158. package/dist-types/commands/DeleteDashboardCommand.d.ts +9 -7
  159. package/dist-types/commands/DeleteFilterCommand.d.ts +9 -7
  160. package/dist-types/commands/DeletePlaylistCommand.d.ts +9 -7
  161. package/dist-types/commands/DeletePlaylistItemCommand.d.ts +9 -7
  162. package/dist-types/commands/DeleteProjectionCommand.d.ts +9 -7
  163. package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +10 -8
  164. package/dist-types/commands/DisableProjectionCommand.d.ts +30 -23
  165. package/dist-types/commands/EnableProjectionCommand.d.ts +30 -23
  166. package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +30 -23
  167. package/dist-types/commands/GetCallCharacteristicsCommand.d.ts +9 -7
  168. package/dist-types/commands/GetCallInsightsCommand.d.ts +9 -7
  169. package/dist-types/commands/GetCallStateCommand.d.ts +9 -7
  170. package/dist-types/commands/GetCallSummaryCommand.d.ts +9 -7
  171. package/dist-types/commands/GetChatInsightsCommand.d.ts +9 -7
  172. package/dist-types/commands/GetChatStateCommand.d.ts +9 -7
  173. package/dist-types/commands/GetChatSummaryCommand.d.ts +9 -7
  174. package/dist-types/commands/GetConferenceInsightsCommand.d.ts +9 -7
  175. package/dist-types/commands/GetConferenceRecordingPresignedDownloadUrlCommand.d.ts +9 -7
  176. package/dist-types/commands/GetConferenceStateCommand.d.ts +9 -7
  177. package/dist-types/commands/GetConferenceSummaryCommand.d.ts +9 -7
  178. package/dist-types/commands/GetConferenceTimeFramesCommand.d.ts +9 -7
  179. package/dist-types/commands/GetDashboardCommand.d.ts +35 -23
  180. package/dist-types/commands/GetPlaylistCommand.d.ts +9 -7
  181. package/dist-types/commands/GetProjectionCommand.d.ts +30 -23
  182. package/dist-types/commands/ListConversationsAggregationsCommand.d.ts +125 -39
  183. package/dist-types/commands/ListConversationsCommand.d.ts +30 -23
  184. package/dist-types/commands/ListConversationsInsightsAggregationsCommand.d.ts +137 -49
  185. package/dist-types/commands/ListConversationsInsightsCommand.d.ts +126 -40
  186. package/dist-types/commands/ListConversationsNestedAggregationsCommand.d.ts +136 -48
  187. package/dist-types/commands/ListDashboardsCommand.d.ts +35 -23
  188. package/dist-types/commands/ListFiltersCommand.d.ts +9 -7
  189. package/dist-types/commands/ListPinnedDashboardsCommand.d.ts +35 -23
  190. package/dist-types/commands/ListPlaylistItemsCommand.d.ts +9 -7
  191. package/dist-types/commands/ListPlaylistsCommand.d.ts +9 -7
  192. package/dist-types/commands/ListProjectionsCommand.d.ts +30 -23
  193. package/dist-types/commands/ListWatchHistoryCommand.d.ts +9 -7
  194. package/dist-types/commands/PauseProjectionCommand.d.ts +30 -23
  195. package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +51 -39
  196. package/dist-types/commands/PutPlaylistItemCommand.d.ts +9 -7
  197. package/dist-types/commands/QueryConversationsCountCommand.d.ts +30 -23
  198. package/dist-types/commands/ScheduleCallSummaryGenerationCommand.d.ts +10 -8
  199. package/dist-types/commands/ScheduleConferenceSummaryGenerationCommand.d.ts +10 -8
  200. package/dist-types/commands/UpdateDashboardAccessCommand.d.ts +35 -23
  201. package/dist-types/commands/UpdateDashboardCommand.d.ts +61 -39
  202. package/dist-types/commands/UpdateFilterCommand.d.ts +9 -7
  203. package/dist-types/commands/UpdatePinnedDashboardsCommand.d.ts +9 -7
  204. package/dist-types/commands/UpdatePlaylistAccessCommand.d.ts +9 -7
  205. package/dist-types/commands/UpdatePlaylistCommand.d.ts +9 -7
  206. package/dist-types/commands/UpdateProjectionCommand.d.ts +51 -39
  207. package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +10 -8
  208. package/dist-types/commands/WatchCommand.d.ts +9 -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 +473 -760
  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;
@@ -907,18 +501,6 @@ export interface ConferenceRecord {
907
501
  */
908
502
  export interface AggregationNoConfigurationDefinition {
909
503
  }
910
- /**
911
- * @public
912
- */
913
- export interface AggregationDateDefinition {
914
- timeZone?: string | undefined;
915
- }
916
- /**
917
- * @public
918
- */
919
- export interface AggregationDayOfWeekDefinition {
920
- timeZone?: string | undefined;
921
- }
922
504
  /**
923
505
  * @public
924
506
  */
@@ -934,7 +516,7 @@ export interface DurationGroupBucket {
934
516
  */
935
517
  from?: number | undefined;
936
518
  /**
937
- * The upper bound for this duration bucket (less than or equal to).
519
+ * The upper bound for this duration bucket (exclusive).
938
520
  * @public
939
521
  */
940
522
  to?: number | undefined;
@@ -947,7 +529,19 @@ export interface AggregationDurationDefinition {
947
529
  * A custom list of buckets to use for the duration aggregation. If not provided, default buckets will be used.
948
530
  * @public
949
531
  */
950
- buckets?: (DurationGroupBucket)[] | undefined;
532
+ buckets?: DurationGroupBucket[] | undefined;
533
+ }
534
+ /**
535
+ * @public
536
+ */
537
+ export interface AggregationDateDefinition {
538
+ timeZone?: string | undefined;
539
+ }
540
+ /**
541
+ * @public
542
+ */
543
+ export interface AggregationDayOfWeekDefinition {
544
+ timeZone?: string | undefined;
951
545
  }
952
546
  /**
953
547
  * @public
@@ -965,7 +559,7 @@ export interface AggregationProjectionDefinition {
965
559
  /**
966
560
  * @public
967
561
  */
968
- export type AggregationDefinition = AggregationDefinition.ChannelMember | AggregationDefinition.ChatbotMember | AggregationDefinition.CountryMember | AggregationDefinition.DateMember | AggregationDefinition.DayOfWeekMember | AggregationDefinition.DepartmentMember | AggregationDefinition.DirectionMember | AggregationDefinition.DurationMember | AggregationDefinition.EntityMember | AggregationDefinition.ExtensionMember | AggregationDefinition.GroupMember | AggregationDefinition.HourOfDayMember | AggregationDefinition.LanguageMember | AggregationDefinition.LocationMember | AggregationDefinition.PbxMember | AggregationDefinition.ProjectionMember | AggregationDefinition.QueueMember | AggregationDefinition.RecordedMember | AggregationDefinition.ServiceMember | AggregationDefinition.TagMember | AggregationDefinition.TrunkMember | AggregationDefinition.VoicebotMember | AggregationDefinition.$UnknownMember;
562
+ export type AggregationDefinition = AggregationDefinition.ChannelMember | AggregationDefinition.ChatbotMember | AggregationDefinition.ConnectTimeMember | AggregationDefinition.CountryMember | AggregationDefinition.DateMember | AggregationDefinition.DayOfWeekMember | AggregationDefinition.DepartmentMember | AggregationDefinition.DirectionMember | AggregationDefinition.DurationMember | AggregationDefinition.EntityMember | AggregationDefinition.ExtensionMember | AggregationDefinition.GroupMember | AggregationDefinition.HoldTimeMember | AggregationDefinition.HourOfDayMember | AggregationDefinition.LanguageMember | AggregationDefinition.LocationMember | AggregationDefinition.PbxMember | AggregationDefinition.ProjectionMember | AggregationDefinition.QueueMember | AggregationDefinition.QueueTimeMember | AggregationDefinition.RecordedMember | AggregationDefinition.ServiceMember | AggregationDefinition.TagMember | AggregationDefinition.TalkTimeMember | AggregationDefinition.TrunkMember | AggregationDefinition.VoicebotMember | AggregationDefinition.WaitTimeMember | AggregationDefinition.$UnknownMember;
969
563
  /**
970
564
  * @public
971
565
  */
@@ -974,6 +568,11 @@ export declare namespace AggregationDefinition {
974
568
  projection: AggregationProjectionDefinition;
975
569
  direction?: never;
976
570
  duration?: never;
571
+ connectTime?: never;
572
+ talkTime?: never;
573
+ waitTime?: never;
574
+ queueTime?: never;
575
+ holdTime?: never;
977
576
  service?: never;
978
577
  extension?: never;
979
578
  chatbot?: never;
@@ -999,6 +598,11 @@ export declare namespace AggregationDefinition {
999
598
  projection?: never;
1000
599
  direction: AggregationNoConfigurationDefinition;
1001
600
  duration?: never;
601
+ connectTime?: never;
602
+ talkTime?: never;
603
+ waitTime?: never;
604
+ queueTime?: never;
605
+ holdTime?: never;
1002
606
  service?: never;
1003
607
  extension?: never;
1004
608
  chatbot?: never;
@@ -1024,6 +628,161 @@ export declare namespace AggregationDefinition {
1024
628
  projection?: never;
1025
629
  direction?: never;
1026
630
  duration: AggregationDurationDefinition;
631
+ connectTime?: never;
632
+ talkTime?: never;
633
+ waitTime?: never;
634
+ queueTime?: never;
635
+ holdTime?: never;
636
+ service?: never;
637
+ extension?: never;
638
+ chatbot?: never;
639
+ voicebot?: never;
640
+ group?: never;
641
+ department?: never;
642
+ tag?: never;
643
+ pbx?: never;
644
+ trunk?: never;
645
+ queue?: never;
646
+ country?: never;
647
+ location?: never;
648
+ language?: never;
649
+ entity?: never;
650
+ channel?: never;
651
+ recorded?: never;
652
+ date?: never;
653
+ dayOfWeek?: never;
654
+ hourOfDay?: never;
655
+ $unknown?: never;
656
+ }
657
+ interface ConnectTimeMember {
658
+ projection?: never;
659
+ direction?: never;
660
+ duration?: never;
661
+ connectTime: AggregationDurationDefinition;
662
+ talkTime?: never;
663
+ waitTime?: never;
664
+ queueTime?: never;
665
+ holdTime?: never;
666
+ service?: never;
667
+ extension?: never;
668
+ chatbot?: never;
669
+ voicebot?: never;
670
+ group?: never;
671
+ department?: never;
672
+ tag?: never;
673
+ pbx?: never;
674
+ trunk?: never;
675
+ queue?: never;
676
+ country?: never;
677
+ location?: never;
678
+ language?: never;
679
+ entity?: never;
680
+ channel?: never;
681
+ recorded?: never;
682
+ date?: never;
683
+ dayOfWeek?: never;
684
+ hourOfDay?: never;
685
+ $unknown?: never;
686
+ }
687
+ interface TalkTimeMember {
688
+ projection?: never;
689
+ direction?: never;
690
+ duration?: never;
691
+ connectTime?: never;
692
+ talkTime: AggregationDurationDefinition;
693
+ waitTime?: never;
694
+ queueTime?: never;
695
+ holdTime?: never;
696
+ service?: never;
697
+ extension?: never;
698
+ chatbot?: never;
699
+ voicebot?: never;
700
+ group?: never;
701
+ department?: never;
702
+ tag?: never;
703
+ pbx?: never;
704
+ trunk?: never;
705
+ queue?: never;
706
+ country?: never;
707
+ location?: never;
708
+ language?: never;
709
+ entity?: never;
710
+ channel?: never;
711
+ recorded?: never;
712
+ date?: never;
713
+ dayOfWeek?: never;
714
+ hourOfDay?: never;
715
+ $unknown?: never;
716
+ }
717
+ interface WaitTimeMember {
718
+ projection?: never;
719
+ direction?: never;
720
+ duration?: never;
721
+ connectTime?: never;
722
+ talkTime?: never;
723
+ waitTime: AggregationDurationDefinition;
724
+ queueTime?: never;
725
+ holdTime?: never;
726
+ service?: never;
727
+ extension?: never;
728
+ chatbot?: never;
729
+ voicebot?: never;
730
+ group?: never;
731
+ department?: never;
732
+ tag?: never;
733
+ pbx?: never;
734
+ trunk?: never;
735
+ queue?: never;
736
+ country?: never;
737
+ location?: never;
738
+ language?: never;
739
+ entity?: never;
740
+ channel?: never;
741
+ recorded?: never;
742
+ date?: never;
743
+ dayOfWeek?: never;
744
+ hourOfDay?: never;
745
+ $unknown?: never;
746
+ }
747
+ interface QueueTimeMember {
748
+ projection?: never;
749
+ direction?: never;
750
+ duration?: never;
751
+ connectTime?: never;
752
+ talkTime?: never;
753
+ waitTime?: never;
754
+ queueTime: AggregationDurationDefinition;
755
+ holdTime?: never;
756
+ service?: never;
757
+ extension?: never;
758
+ chatbot?: never;
759
+ voicebot?: never;
760
+ group?: never;
761
+ department?: never;
762
+ tag?: never;
763
+ pbx?: never;
764
+ trunk?: never;
765
+ queue?: never;
766
+ country?: never;
767
+ location?: never;
768
+ language?: never;
769
+ entity?: never;
770
+ channel?: never;
771
+ recorded?: never;
772
+ date?: never;
773
+ dayOfWeek?: never;
774
+ hourOfDay?: never;
775
+ $unknown?: never;
776
+ }
777
+ interface HoldTimeMember {
778
+ projection?: never;
779
+ direction?: never;
780
+ duration?: never;
781
+ connectTime?: never;
782
+ talkTime?: never;
783
+ waitTime?: never;
784
+ queueTime?: never;
785
+ holdTime: AggregationDurationDefinition;
1027
786
  service?: never;
1028
787
  extension?: never;
1029
788
  chatbot?: never;
@@ -1049,6 +808,11 @@ export declare namespace AggregationDefinition {
1049
808
  projection?: never;
1050
809
  direction?: never;
1051
810
  duration?: never;
811
+ connectTime?: never;
812
+ talkTime?: never;
813
+ waitTime?: never;
814
+ queueTime?: never;
815
+ holdTime?: never;
1052
816
  service: AggregationNoConfigurationDefinition;
1053
817
  extension?: never;
1054
818
  chatbot?: never;
@@ -1074,6 +838,11 @@ export declare namespace AggregationDefinition {
1074
838
  projection?: never;
1075
839
  direction?: never;
1076
840
  duration?: never;
841
+ connectTime?: never;
842
+ talkTime?: never;
843
+ waitTime?: never;
844
+ queueTime?: never;
845
+ holdTime?: never;
1077
846
  service?: never;
1078
847
  extension: AggregationNoConfigurationDefinition;
1079
848
  chatbot?: never;
@@ -1099,6 +868,11 @@ export declare namespace AggregationDefinition {
1099
868
  projection?: never;
1100
869
  direction?: never;
1101
870
  duration?: never;
871
+ connectTime?: never;
872
+ talkTime?: never;
873
+ waitTime?: never;
874
+ queueTime?: never;
875
+ holdTime?: never;
1102
876
  service?: never;
1103
877
  extension?: never;
1104
878
  chatbot: AggregationNoConfigurationDefinition;
@@ -1124,6 +898,11 @@ export declare namespace AggregationDefinition {
1124
898
  projection?: never;
1125
899
  direction?: never;
1126
900
  duration?: never;
901
+ connectTime?: never;
902
+ talkTime?: never;
903
+ waitTime?: never;
904
+ queueTime?: never;
905
+ holdTime?: never;
1127
906
  service?: never;
1128
907
  extension?: never;
1129
908
  chatbot?: never;
@@ -1149,6 +928,11 @@ export declare namespace AggregationDefinition {
1149
928
  projection?: never;
1150
929
  direction?: never;
1151
930
  duration?: never;
931
+ connectTime?: never;
932
+ talkTime?: never;
933
+ waitTime?: never;
934
+ queueTime?: never;
935
+ holdTime?: never;
1152
936
  service?: never;
1153
937
  extension?: never;
1154
938
  chatbot?: never;
@@ -1174,6 +958,11 @@ export declare namespace AggregationDefinition {
1174
958
  projection?: never;
1175
959
  direction?: never;
1176
960
  duration?: never;
961
+ connectTime?: never;
962
+ talkTime?: never;
963
+ waitTime?: never;
964
+ queueTime?: never;
965
+ holdTime?: never;
1177
966
  service?: never;
1178
967
  extension?: never;
1179
968
  chatbot?: never;
@@ -1199,6 +988,11 @@ export declare namespace AggregationDefinition {
1199
988
  projection?: never;
1200
989
  direction?: never;
1201
990
  duration?: never;
991
+ connectTime?: never;
992
+ talkTime?: never;
993
+ waitTime?: never;
994
+ queueTime?: never;
995
+ holdTime?: never;
1202
996
  service?: never;
1203
997
  extension?: never;
1204
998
  chatbot?: never;
@@ -1224,6 +1018,11 @@ export declare namespace AggregationDefinition {
1224
1018
  projection?: never;
1225
1019
  direction?: never;
1226
1020
  duration?: never;
1021
+ connectTime?: never;
1022
+ talkTime?: never;
1023
+ waitTime?: never;
1024
+ queueTime?: never;
1025
+ holdTime?: never;
1227
1026
  service?: never;
1228
1027
  extension?: never;
1229
1028
  chatbot?: never;
@@ -1249,6 +1048,11 @@ export declare namespace AggregationDefinition {
1249
1048
  projection?: never;
1250
1049
  direction?: never;
1251
1050
  duration?: never;
1051
+ connectTime?: never;
1052
+ talkTime?: never;
1053
+ waitTime?: never;
1054
+ queueTime?: never;
1055
+ holdTime?: never;
1252
1056
  service?: never;
1253
1057
  extension?: never;
1254
1058
  chatbot?: never;
@@ -1274,6 +1078,11 @@ export declare namespace AggregationDefinition {
1274
1078
  projection?: never;
1275
1079
  direction?: never;
1276
1080
  duration?: never;
1081
+ connectTime?: never;
1082
+ talkTime?: never;
1083
+ waitTime?: never;
1084
+ queueTime?: never;
1085
+ holdTime?: never;
1277
1086
  service?: never;
1278
1087
  extension?: never;
1279
1088
  chatbot?: never;
@@ -1299,6 +1108,11 @@ export declare namespace AggregationDefinition {
1299
1108
  projection?: never;
1300
1109
  direction?: never;
1301
1110
  duration?: never;
1111
+ connectTime?: never;
1112
+ talkTime?: never;
1113
+ waitTime?: never;
1114
+ queueTime?: never;
1115
+ holdTime?: never;
1302
1116
  service?: never;
1303
1117
  extension?: never;
1304
1118
  chatbot?: never;
@@ -1324,6 +1138,11 @@ export declare namespace AggregationDefinition {
1324
1138
  projection?: never;
1325
1139
  direction?: never;
1326
1140
  duration?: never;
1141
+ connectTime?: never;
1142
+ talkTime?: never;
1143
+ waitTime?: never;
1144
+ queueTime?: never;
1145
+ holdTime?: never;
1327
1146
  service?: never;
1328
1147
  extension?: never;
1329
1148
  chatbot?: never;
@@ -1349,6 +1168,11 @@ export declare namespace AggregationDefinition {
1349
1168
  projection?: never;
1350
1169
  direction?: never;
1351
1170
  duration?: never;
1171
+ connectTime?: never;
1172
+ talkTime?: never;
1173
+ waitTime?: never;
1174
+ queueTime?: never;
1175
+ holdTime?: never;
1352
1176
  service?: never;
1353
1177
  extension?: never;
1354
1178
  chatbot?: never;
@@ -1374,6 +1198,11 @@ export declare namespace AggregationDefinition {
1374
1198
  projection?: never;
1375
1199
  direction?: never;
1376
1200
  duration?: never;
1201
+ connectTime?: never;
1202
+ talkTime?: never;
1203
+ waitTime?: never;
1204
+ queueTime?: never;
1205
+ holdTime?: never;
1377
1206
  service?: never;
1378
1207
  extension?: never;
1379
1208
  chatbot?: never;
@@ -1399,6 +1228,11 @@ export declare namespace AggregationDefinition {
1399
1228
  projection?: never;
1400
1229
  direction?: never;
1401
1230
  duration?: never;
1231
+ connectTime?: never;
1232
+ talkTime?: never;
1233
+ waitTime?: never;
1234
+ queueTime?: never;
1235
+ holdTime?: never;
1402
1236
  service?: never;
1403
1237
  extension?: never;
1404
1238
  chatbot?: never;
@@ -1424,6 +1258,11 @@ export declare namespace AggregationDefinition {
1424
1258
  projection?: never;
1425
1259
  direction?: never;
1426
1260
  duration?: never;
1261
+ connectTime?: never;
1262
+ talkTime?: never;
1263
+ waitTime?: never;
1264
+ queueTime?: never;
1265
+ holdTime?: never;
1427
1266
  service?: never;
1428
1267
  extension?: never;
1429
1268
  chatbot?: never;
@@ -1449,6 +1288,11 @@ export declare namespace AggregationDefinition {
1449
1288
  projection?: never;
1450
1289
  direction?: never;
1451
1290
  duration?: never;
1291
+ connectTime?: never;
1292
+ talkTime?: never;
1293
+ waitTime?: never;
1294
+ queueTime?: never;
1295
+ holdTime?: never;
1452
1296
  service?: never;
1453
1297
  extension?: never;
1454
1298
  chatbot?: never;
@@ -1474,6 +1318,11 @@ export declare namespace AggregationDefinition {
1474
1318
  projection?: never;
1475
1319
  direction?: never;
1476
1320
  duration?: never;
1321
+ connectTime?: never;
1322
+ talkTime?: never;
1323
+ waitTime?: never;
1324
+ queueTime?: never;
1325
+ holdTime?: never;
1477
1326
  service?: never;
1478
1327
  extension?: never;
1479
1328
  chatbot?: never;
@@ -1499,6 +1348,11 @@ export declare namespace AggregationDefinition {
1499
1348
  projection?: never;
1500
1349
  direction?: never;
1501
1350
  duration?: never;
1351
+ connectTime?: never;
1352
+ talkTime?: never;
1353
+ waitTime?: never;
1354
+ queueTime?: never;
1355
+ holdTime?: never;
1502
1356
  service?: never;
1503
1357
  extension?: never;
1504
1358
  chatbot?: never;
@@ -1527,6 +1381,11 @@ export declare namespace AggregationDefinition {
1527
1381
  projection?: never;
1528
1382
  direction?: never;
1529
1383
  duration?: never;
1384
+ connectTime?: never;
1385
+ talkTime?: never;
1386
+ waitTime?: never;
1387
+ queueTime?: never;
1388
+ holdTime?: never;
1530
1389
  service?: never;
1531
1390
  extension?: never;
1532
1391
  chatbot?: never;
@@ -1548,10 +1407,19 @@ export declare namespace AggregationDefinition {
1548
1407
  hourOfDay?: never;
1549
1408
  $unknown: [string, any];
1550
1409
  }
1410
+ /**
1411
+ * @deprecated unused in schema-serde mode.
1412
+ *
1413
+ */
1551
1414
  interface Visitor<T> {
1552
1415
  projection: (value: AggregationProjectionDefinition) => T;
1553
1416
  direction: (value: AggregationNoConfigurationDefinition) => T;
1554
1417
  duration: (value: AggregationDurationDefinition) => T;
1418
+ connectTime: (value: AggregationDurationDefinition) => T;
1419
+ talkTime: (value: AggregationDurationDefinition) => T;
1420
+ waitTime: (value: AggregationDurationDefinition) => T;
1421
+ queueTime: (value: AggregationDurationDefinition) => T;
1422
+ holdTime: (value: AggregationDurationDefinition) => T;
1555
1423
  service: (value: AggregationNoConfigurationDefinition) => T;
1556
1424
  extension: (value: AggregationNoConfigurationDefinition) => T;
1557
1425
  chatbot: (value: AggregationNoConfigurationDefinition) => T;
@@ -1573,7 +1441,6 @@ export declare namespace AggregationDefinition {
1573
1441
  hourOfDay: (value: AggregationHourOfDayDefinition) => T;
1574
1442
  _: (name: string, value: any) => T;
1575
1443
  }
1576
- const visit: <T>(value: AggregationDefinition, visitor: Visitor<T>) => T;
1577
1444
  }
1578
1445
  /**
1579
1446
  * @public
@@ -1848,6 +1715,10 @@ export declare namespace ListConversationsFilterField {
1848
1715
  projection?: never;
1849
1716
  $unknown: [string, any];
1850
1717
  }
1718
+ /**
1719
+ * @deprecated unused in schema-serde mode.
1720
+ *
1721
+ */
1851
1722
  interface Visitor<T> {
1852
1723
  direction: (value: boolean) => T;
1853
1724
  service: (value: boolean) => T;
@@ -1865,7 +1736,6 @@ export declare namespace ListConversationsFilterField {
1865
1736
  projection: (value: ListConversationsFilterProjectionField) => T;
1866
1737
  _: (name: string, value: any) => T;
1867
1738
  }
1868
- const visit: <T>(value: ListConversationsFilterField, visitor: Visitor<T>) => T;
1869
1739
  }
1870
1740
  /**
1871
1741
  * @public
@@ -1875,6 +1745,13 @@ export interface ListConversationsFilterChannel {
1875
1745
  whatsapp?: boolean | undefined;
1876
1746
  kite?: boolean | undefined;
1877
1747
  }
1748
+ /**
1749
+ * @public
1750
+ */
1751
+ export interface ListConversationsFilterNumber {
1752
+ from?: number | undefined;
1753
+ to?: number | undefined;
1754
+ }
1878
1755
  /**
1879
1756
  * @public
1880
1757
  */
@@ -1883,24 +1760,6 @@ export interface ListConversationsFilterAbsoluteDate {
1883
1760
  to?: string | undefined;
1884
1761
  timeZone?: string | undefined;
1885
1762
  }
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
1763
  /**
1905
1764
  * @public
1906
1765
  */
@@ -1934,12 +1793,15 @@ export declare namespace ListConversationsFilterDate {
1934
1793
  predefined?: never;
1935
1794
  $unknown: [string, any];
1936
1795
  }
1796
+ /**
1797
+ * @deprecated unused in schema-serde mode.
1798
+ *
1799
+ */
1937
1800
  interface Visitor<T> {
1938
1801
  absolute: (value: ListConversationsFilterAbsoluteDate) => T;
1939
1802
  predefined: (value: ListConversationsFilterPredefinedDate) => T;
1940
1803
  _: (name: string, value: any) => T;
1941
1804
  }
1942
- const visit: <T>(value: ListConversationsFilterDate, visitor: Visitor<T>) => T;
1943
1805
  }
1944
1806
  /**
1945
1807
  * @public
@@ -1956,13 +1818,6 @@ export interface ListConversationsFilterDirection {
1956
1818
  outbound?: boolean | undefined;
1957
1819
  internal?: boolean | undefined;
1958
1820
  }
1959
- /**
1960
- * @public
1961
- */
1962
- export interface ListConversationsFilterNumber {
1963
- from?: number | undefined;
1964
- to?: number | undefined;
1965
- }
1966
1821
  /**
1967
1822
  * @public
1968
1823
  */
@@ -2025,13 +1880,16 @@ export declare namespace ConversationTarget {
2025
1880
  chat?: never;
2026
1881
  $unknown: [string, any];
2027
1882
  }
1883
+ /**
1884
+ * @deprecated unused in schema-serde mode.
1885
+ *
1886
+ */
2028
1887
  interface Visitor<T> {
2029
1888
  call: (value: CallConversationTarget) => T;
2030
1889
  conference: (value: ConferenceConversationTarget) => T;
2031
1890
  chat: (value: ChatConversationTarget) => T;
2032
1891
  _: (name: string, value: any) => T;
2033
1892
  }
2034
- const visit: <T>(value: ConversationTarget, visitor: Visitor<T>) => T;
2035
1893
  }
2036
1894
  /**
2037
1895
  * @public
@@ -2040,7 +1898,7 @@ export interface ListConversationsFilterInsight {
2040
1898
  projectionId: string;
2041
1899
  fieldId: string;
2042
1900
  match?: string | undefined;
2043
- matchAny?: (string)[] | undefined;
1901
+ matchAny?: string[] | undefined;
2044
1902
  }
2045
1903
  /**
2046
1904
  * @public
@@ -2095,64 +1953,57 @@ export declare namespace ListConversationsFilterParticipant {
2095
1953
  extension?: never;
2096
1954
  $unknown: [string, any];
2097
1955
  }
1956
+ /**
1957
+ * @deprecated unused in schema-serde mode.
1958
+ *
1959
+ */
2098
1960
  interface Visitor<T> {
2099
1961
  email: (value: string) => T;
2100
1962
  phone: (value: string) => T;
2101
1963
  extension: (value: string) => T;
2102
1964
  _: (name: string, value: any) => T;
2103
1965
  }
2104
- const visit: <T>(value: ListConversationsFilterParticipant, visitor: Visitor<T>) => T;
2105
1966
  }
2106
1967
  /**
2107
1968
  * @public
2108
1969
  */
2109
1970
  export interface ListConversationsFilter {
2110
- id?: (ConversationTarget)[] | undefined;
1971
+ id?: ConversationTarget[] | undefined;
2111
1972
  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;
1973
+ participants?: ListConversationsFilterParticipant[] | undefined;
1974
+ participantsToInclude?: ListConversationsFilterParticipant[] | undefined;
1975
+ participantsToExclude?: ListConversationsFilterParticipant[] | undefined;
1976
+ chatbots?: string[] | undefined;
1977
+ voicebots?: string[] | undefined;
1978
+ service?: string[] | undefined;
1979
+ group?: string[] | undefined;
1980
+ department?: string[] | undefined;
1981
+ tag?: string[] | undefined;
1982
+ pbx?: string[] | undefined;
1983
+ trunk?: string[] | undefined;
1984
+ queue?: string[] | undefined;
1985
+ country?: string[] | undefined;
1986
+ location?: string[] | undefined;
1987
+ phases?: string[] | undefined;
1988
+ language?: string[] | undefined;
2128
1989
  duration?: ListConversationsFilterNumber | undefined;
1990
+ connectTime?: ListConversationsFilterNumber | undefined;
1991
+ talkTime?: ListConversationsFilterNumber | undefined;
1992
+ waitTime?: ListConversationsFilterNumber | undefined;
1993
+ queueTime?: ListConversationsFilterNumber | undefined;
1994
+ holdTime?: ListConversationsFilterNumber | undefined;
2129
1995
  interaction?: ListConversationsFilterInteraction | undefined;
2130
1996
  recorded?: boolean | undefined;
2131
1997
  transcribed?: boolean | undefined;
2132
1998
  direction?: ListConversationsFilterDirection | undefined;
2133
- insights?: (ListConversationsFilterInsight)[] | undefined;
1999
+ insights?: ListConversationsFilterInsight[] | undefined;
2134
2000
  channel?: ListConversationsFilterChannel | undefined;
2135
2001
  date?: ListConversationsFilterDate | undefined;
2136
2002
  dayOfWeek?: ListConversationsFilterDateIndex | undefined;
2137
2003
  hourOfDay?: ListConversationsFilterDateIndex | undefined;
2138
- present?: (ListConversationsFilterField)[] | undefined;
2139
- absent?: (ListConversationsFilterField)[] | undefined;
2004
+ present?: ListConversationsFilterField[] | undefined;
2005
+ absent?: ListConversationsFilterField[] | undefined;
2140
2006
  }
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
2007
  /**
2157
2008
  * @public
2158
2009
  */
@@ -2184,23 +2035,11 @@ export interface ConversationPlaybackState {
2184
2035
  * @public
2185
2036
  */
2186
2037
  export interface ConversationState {
2187
- playlists?: (string)[] | undefined;
2038
+ playlists?: string[] | undefined;
2188
2039
  playback?: ConversationPlaybackState | undefined;
2189
2040
  firstWatchedAt?: string | undefined;
2190
2041
  lastWatchedAt?: string | undefined;
2191
2042
  }
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
2043
  /**
2205
2044
  * @public
2206
2045
  */
@@ -2227,12 +2066,15 @@ export declare namespace DashboardPrincipal {
2227
2066
  groupId?: never;
2228
2067
  $unknown: [string, any];
2229
2068
  }
2069
+ /**
2070
+ * @deprecated unused in schema-serde mode.
2071
+ *
2072
+ */
2230
2073
  interface Visitor<T> {
2231
2074
  userId: (value: string) => T;
2232
2075
  groupId: (value: string) => T;
2233
2076
  _: (name: string, value: any) => T;
2234
2077
  }
2235
- const visit: <T>(value: DashboardPrincipal, visitor: Visitor<T>) => T;
2236
2078
  }
2237
2079
  /**
2238
2080
  * @public
@@ -2241,24 +2083,12 @@ export interface DashboardGrant {
2241
2083
  permission: DashboardPermission;
2242
2084
  principal: DashboardPrincipal;
2243
2085
  }
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
2086
  /**
2257
2087
  * @public
2258
2088
  */
2259
2089
  export interface DashboardAccess {
2260
2090
  visibility?: DashboardVisibility | undefined;
2261
- grants?: (DashboardGrant)[] | undefined;
2091
+ grants?: DashboardGrant[] | undefined;
2262
2092
  }
2263
2093
  /**
2264
2094
  * @public
@@ -2284,14 +2114,14 @@ export interface DashboardVisual {
2284
2114
  export interface DashboardSheet {
2285
2115
  id: string;
2286
2116
  name: string;
2287
- visuals: (DashboardVisual)[];
2117
+ visuals: DashboardVisual[];
2288
2118
  filter?: ListConversationsFilter | undefined;
2289
2119
  }
2290
2120
  /**
2291
2121
  * @public
2292
2122
  */
2293
2123
  export interface DashboardDefinition {
2294
- sheets?: (DashboardSheet)[] | undefined;
2124
+ sheets?: DashboardSheet[] | undefined;
2295
2125
  filter?: ListConversationsFilter | undefined;
2296
2126
  }
2297
2127
  /**
@@ -2385,18 +2215,6 @@ export interface ListFiltersItem {
2385
2215
  export interface CreateFilterOutput {
2386
2216
  item: ListFiltersItem;
2387
2217
  }
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
2218
  /**
2401
2219
  * @public
2402
2220
  */
@@ -2423,12 +2241,15 @@ export declare namespace PlaylistPrincipal {
2423
2241
  groupId?: never;
2424
2242
  $unknown: [string, any];
2425
2243
  }
2244
+ /**
2245
+ * @deprecated unused in schema-serde mode.
2246
+ *
2247
+ */
2426
2248
  interface Visitor<T> {
2427
2249
  userId: (value: string) => T;
2428
2250
  groupId: (value: string) => T;
2429
2251
  _: (name: string, value: any) => T;
2430
2252
  }
2431
- const visit: <T>(value: PlaylistPrincipal, visitor: Visitor<T>) => T;
2432
2253
  }
2433
2254
  /**
2434
2255
  * @public
@@ -2437,24 +2258,12 @@ export interface PlaylistGrant {
2437
2258
  permission: PlaylistPermission;
2438
2259
  principal: PlaylistPrincipal;
2439
2260
  }
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
2261
  /**
2453
2262
  * @public
2454
2263
  */
2455
2264
  export interface PlaylistAccess {
2456
2265
  visibility?: PlaylistVisibility | undefined;
2457
- grants?: (PlaylistGrant)[] | undefined;
2266
+ grants?: PlaylistGrant[] | undefined;
2458
2267
  }
2459
2268
  /**
2460
2269
  * @public
@@ -2498,7 +2307,7 @@ export interface CreatePlaylistOutput {
2498
2307
  * @public
2499
2308
  */
2500
2309
  export interface ProjectionDirectionCondition {
2501
- equals: (CallDirection)[];
2310
+ equals: CallDirection[];
2502
2311
  }
2503
2312
  /**
2504
2313
  * @public
@@ -2507,32 +2316,19 @@ export interface ProjectionDurationCondition {
2507
2316
  minimum: number;
2508
2317
  maximum: number;
2509
2318
  }
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
2319
  /**
2524
2320
  * @public
2525
2321
  */
2526
2322
  export interface ProjectionEntityCondition {
2527
- equals: (ProjectionEntityConditionValue)[];
2323
+ equals: ProjectionEntityConditionValue[];
2528
2324
  }
2529
2325
  /**
2530
2326
  * @public
2531
2327
  */
2532
2328
  export interface ProjectionParticipantsCondition {
2533
- emails?: (string)[] | undefined;
2534
- extensions?: (string)[] | undefined;
2535
- groups?: (string)[] | undefined;
2329
+ emails?: string[] | undefined;
2330
+ extensions?: string[] | undefined;
2331
+ groups?: string[] | undefined;
2536
2332
  }
2537
2333
  /**
2538
2334
  * @public
@@ -2580,6 +2376,10 @@ export declare namespace ProjectionCondition {
2580
2376
  duration?: never;
2581
2377
  $unknown: [string, any];
2582
2378
  }
2379
+ /**
2380
+ * @deprecated unused in schema-serde mode.
2381
+ *
2382
+ */
2583
2383
  interface Visitor<T> {
2584
2384
  entity: (value: ProjectionEntityCondition) => T;
2585
2385
  direction: (value: ProjectionDirectionCondition) => T;
@@ -2587,7 +2387,6 @@ export declare namespace ProjectionCondition {
2587
2387
  duration: (value: ProjectionDurationCondition) => T;
2588
2388
  _: (name: string, value: any) => T;
2589
2389
  }
2590
- const visit: <T>(value: ProjectionCondition, visitor: Visitor<T>) => T;
2591
2390
  }
2592
2391
  /**
2593
2392
  * @public
@@ -2598,14 +2397,14 @@ export interface ProjectionMultilineParameter {
2598
2397
  * @public
2599
2398
  */
2600
2399
  export interface ProjectionSelectionParameter {
2601
- options: (string)[];
2400
+ options: string[];
2602
2401
  multi?: boolean | undefined;
2603
2402
  adaptive?: boolean | undefined;
2604
2403
  /**
2605
2404
  * Options generated by AI when adaptive mode was enabled.
2606
2405
  * @public
2607
2406
  */
2608
- adaptiveOptions?: (string)[] | undefined;
2407
+ adaptiveOptions?: string[] | undefined;
2609
2408
  }
2610
2409
  /**
2611
2410
  * @public
@@ -2647,13 +2446,16 @@ export declare namespace ProjectionParameter {
2647
2446
  selection?: never;
2648
2447
  $unknown: [string, any];
2649
2448
  }
2449
+ /**
2450
+ * @deprecated unused in schema-serde mode.
2451
+ *
2452
+ */
2650
2453
  interface Visitor<T> {
2651
2454
  text: (value: ProjectionTextParameter) => T;
2652
2455
  multiline: (value: ProjectionMultilineParameter) => T;
2653
2456
  selection: (value: ProjectionSelectionParameter) => T;
2654
2457
  _: (name: string, value: any) => T;
2655
2458
  }
2656
- const visit: <T>(value: ProjectionParameter, visitor: Visitor<T>) => T;
2657
2459
  }
2658
2460
  /**
2659
2461
  * @public
@@ -2677,7 +2479,7 @@ export interface CreateProjectionInput {
2677
2479
  /**
2678
2480
  * Compatibility field for legacy clients. Use `category` instead.
2679
2481
  *
2680
- * @deprecated
2482
+ * @deprecated deprecated.
2681
2483
  * @public
2682
2484
  */
2683
2485
  categoryId?: string | undefined;
@@ -2687,10 +2489,10 @@ export interface CreateProjectionInput {
2687
2489
  /**
2688
2490
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
2689
2491
  *
2690
- * @deprecated
2492
+ * @deprecated deprecated.
2691
2493
  * @public
2692
2494
  */
2693
- conditions?: (ProjectionCondition)[] | undefined;
2495
+ conditions?: ProjectionCondition[] | undefined;
2694
2496
  /**
2695
2497
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
2696
2498
  * @public
@@ -2706,7 +2508,7 @@ export interface CreateProjectionInput {
2706
2508
  * @public
2707
2509
  */
2708
2510
  group?: string | undefined;
2709
- fields: (ProjectionField)[];
2511
+ fields: ProjectionField[];
2710
2512
  /**
2711
2513
  * The unique identifier of the tenant when a service token is used.
2712
2514
  * @public
@@ -2725,19 +2527,6 @@ export interface ProjectionMetadata {
2725
2527
  */
2726
2528
  customized?: boolean | undefined;
2727
2529
  }
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
2530
  /**
2742
2531
  * @public
2743
2532
  */
@@ -2750,7 +2539,7 @@ export interface Projection {
2750
2539
  /**
2751
2540
  * Compatibility field for legacy clients. Use `category` instead.
2752
2541
  *
2753
- * @deprecated
2542
+ * @deprecated deprecated.
2754
2543
  * @public
2755
2544
  */
2756
2545
  categoryId?: string | undefined;
@@ -2760,10 +2549,10 @@ export interface Projection {
2760
2549
  /**
2761
2550
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
2762
2551
  *
2763
- * @deprecated
2552
+ * @deprecated deprecated.
2764
2553
  * @public
2765
2554
  */
2766
- conditions?: (ProjectionCondition)[] | undefined;
2555
+ conditions?: ProjectionCondition[] | undefined;
2767
2556
  /**
2768
2557
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
2769
2558
  * @public
@@ -2779,7 +2568,7 @@ export interface Projection {
2779
2568
  * @public
2780
2569
  */
2781
2570
  group?: string | undefined;
2782
- fields: (ProjectionField)[];
2571
+ fields: ProjectionField[];
2783
2572
  id: string;
2784
2573
  status: ProjectionStatus;
2785
2574
  version: number;
@@ -2822,7 +2611,7 @@ export interface CreateProjectionsCategoryOutput {
2822
2611
  * @public
2823
2612
  */
2824
2613
  export interface DashboardAccessNotify {
2825
- emails: (string)[];
2614
+ emails: string[];
2826
2615
  message?: string | undefined;
2827
2616
  }
2828
2617
  /**
@@ -2970,17 +2759,6 @@ export interface EnableProjectionInput {
2970
2759
  export interface EnableProjectionOutput {
2971
2760
  projection: Projection;
2972
2761
  }
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
2762
  /**
2985
2763
  * @public
2986
2764
  */
@@ -3001,7 +2779,7 @@ export interface FlatAggregationBucket {
3001
2779
  */
3002
2780
  interval?: AggregationDateInterval | undefined;
3003
2781
  /**
3004
- * An optional filter that represents a specified bucket, available only for date aggregations.
2782
+ * An optional filter that represents a specified bucket, available for date and range aggregations.
3005
2783
  * @public
3006
2784
  */
3007
2785
  filter?: ListConversationsFilter | undefined;
@@ -3015,7 +2793,7 @@ export interface FlatAggregationResult {
3015
2793
  * The list of buckets generated for this insight.
3016
2794
  * @public
3017
2795
  */
3018
- buckets: (FlatAggregationBucket)[];
2796
+ buckets: FlatAggregationBucket[];
3019
2797
  }
3020
2798
  /**
3021
2799
  * @public
@@ -3053,7 +2831,7 @@ export interface InsightsInterruptionsChunk {
3053
2831
  * @public
3054
2832
  */
3055
2833
  export interface InsightsInterruptions {
3056
- chunks?: (InsightsInterruptionsChunk)[] | undefined;
2834
+ chunks?: InsightsInterruptionsChunk[] | undefined;
3057
2835
  }
3058
2836
  /**
3059
2837
  * @public
@@ -3066,7 +2844,7 @@ export interface InsightsNonTalkTimeChunk {
3066
2844
  * @public
3067
2845
  */
3068
2846
  export interface InsightsNonTalkTime {
3069
- chunks?: (InsightsNonTalkTimeChunk)[] | undefined;
2847
+ chunks?: InsightsNonTalkTimeChunk[] | undefined;
3070
2848
  }
3071
2849
  /**
3072
2850
  * @public
@@ -3089,15 +2867,15 @@ export interface InsightsSentimentParticipantScore {
3089
2867
  */
3090
2868
  export interface InsightsSentimentScoreByPeriodChunk {
3091
2869
  score: number;
3092
- participants?: (InsightsSentimentParticipantScore)[] | undefined;
2870
+ participants?: InsightsSentimentParticipantScore[] | undefined;
3093
2871
  }
3094
2872
  /**
3095
2873
  * @public
3096
2874
  */
3097
2875
  export interface InsightsSentiment {
3098
2876
  score?: number | undefined;
3099
- scoreByParticipant?: (InsightsSentimentScoreByParticipantChunk)[] | undefined;
3100
- scoreByPeriod?: (InsightsSentimentScoreByPeriodChunk)[] | undefined;
2877
+ scoreByParticipant?: InsightsSentimentScoreByParticipantChunk[] | undefined;
2878
+ scoreByPeriod?: InsightsSentimentScoreByPeriodChunk[] | undefined;
3101
2879
  }
3102
2880
  /**
3103
2881
  * @public
@@ -3110,7 +2888,7 @@ export interface InsightsTalkSpeedChunk {
3110
2888
  * @public
3111
2889
  */
3112
2890
  export interface InsightsCharacteristicsTalkSpeed {
3113
- detailsByParticipant?: (InsightsTalkSpeedChunk)[] | undefined;
2891
+ detailsByParticipant?: InsightsTalkSpeedChunk[] | undefined;
3114
2892
  }
3115
2893
  /**
3116
2894
  * @public
@@ -3123,7 +2901,7 @@ export interface InsightsTalkTimeChunk {
3123
2901
  * @public
3124
2902
  */
3125
2903
  export interface InsightsTalkTime {
3126
- detailsByParticipant?: (InsightsTalkTimeChunk)[] | undefined;
2904
+ detailsByParticipant?: InsightsTalkTimeChunk[] | undefined;
3127
2905
  }
3128
2906
  /**
3129
2907
  * @public
@@ -3136,22 +2914,6 @@ export interface InsightsCharacteristics {
3136
2914
  talkSpeed?: InsightsCharacteristicsTalkSpeed | undefined;
3137
2915
  talkTime?: InsightsTalkTime | undefined;
3138
2916
  }
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
2917
  /**
3156
2918
  * @public
3157
2919
  */
@@ -3175,19 +2937,6 @@ export interface ProjectionInsightsField {
3175
2937
  name: string;
3176
2938
  value: __DocumentType;
3177
2939
  }
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
2940
  /**
3192
2941
  * @public
3193
2942
  */
@@ -3205,14 +2954,14 @@ export interface ProjectionInsights {
3205
2954
  * @public
3206
2955
  */
3207
2956
  reason?: InsightsReason | undefined;
3208
- fields: (ProjectionInsightsField)[];
2957
+ fields: ProjectionInsightsField[];
3209
2958
  }
3210
2959
  /**
3211
2960
  * @public
3212
2961
  */
3213
2962
  export interface GetCallInsightsOutput {
3214
2963
  status: InsightsStatus;
3215
- insights?: (ProjectionInsights)[] | undefined;
2964
+ insights?: ProjectionInsights[] | undefined;
3216
2965
  }
3217
2966
  /**
3218
2967
  * @public
@@ -3254,22 +3003,22 @@ export interface TranscriptionSummaryCsat {
3254
3003
  export interface TranscriptionSummaryJson {
3255
3004
  callBriefVeryShortTitle?: string | undefined;
3256
3005
  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;
3006
+ customerInsights?: string[] | undefined;
3007
+ keyPoints?: string[] | undefined;
3008
+ competitiveInformation?: string[] | undefined;
3009
+ implementationTimeline?: string[] | undefined;
3010
+ budget?: string[] | undefined;
3011
+ customerResponse?: string[] | undefined;
3012
+ salesProposals?: string[] | undefined;
3013
+ actionItems?: string[] | undefined;
3014
+ nextSteps?: string[] | undefined;
3266
3015
  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;
3016
+ topics?: string[] | undefined;
3017
+ review?: string[] | undefined;
3018
+ progress?: string[] | undefined;
3019
+ issues?: string[] | undefined;
3020
+ decisions?: string[] | undefined;
3021
+ tags?: string[] | undefined;
3273
3022
  }
3274
3023
  /**
3275
3024
  * @public
@@ -3298,7 +3047,7 @@ export interface GetChatInsightsInput {
3298
3047
  */
3299
3048
  export interface GetChatInsightsOutput {
3300
3049
  status: InsightsStatus;
3301
- insights?: (ProjectionInsights)[] | undefined;
3050
+ insights?: ProjectionInsights[] | undefined;
3302
3051
  }
3303
3052
  /**
3304
3053
  * @public
@@ -3344,24 +3093,7 @@ export interface GetConferenceInsightsInput {
3344
3093
  */
3345
3094
  export interface GetConferenceInsightsOutput {
3346
3095
  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
3096
+ insights?: ProjectionInsights[] | undefined;
3365
3097
  }
3366
3098
  /**
3367
3099
  * @public
@@ -3394,17 +3126,6 @@ export interface GetConferenceRecordingPresignedDownloadUrlOutput {
3394
3126
  */
3395
3127
  presignedDownloadUrl: string;
3396
3128
  }
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
3129
  /**
3409
3130
  * @public
3410
3131
  */
@@ -3456,13 +3177,13 @@ export interface ConferenceTimeFramesChunk {
3456
3177
  */
3457
3178
  export interface ConferenceTimeFramesListItem {
3458
3179
  jid: string;
3459
- frames: (ConferenceTimeFramesChunk)[];
3180
+ frames: ConferenceTimeFramesChunk[];
3460
3181
  }
3461
3182
  /**
3462
3183
  * @public
3463
3184
  */
3464
3185
  export interface GetConferenceTimeFramesOutput {
3465
- timeFrames?: (ConferenceTimeFramesListItem)[] | undefined;
3186
+ timeFrames?: ConferenceTimeFramesListItem[] | undefined;
3466
3187
  }
3467
3188
  /**
3468
3189
  * @public
@@ -3526,6 +3247,7 @@ export interface GetProjectionOutput {
3526
3247
  projection: Projection;
3527
3248
  }
3528
3249
  /**
3250
+ * @deprecated deprecated.
3529
3251
  * @public
3530
3252
  */
3531
3253
  export interface InsightsBucket {
@@ -3540,12 +3262,13 @@ export interface InsightsBucket {
3540
3262
  */
3541
3263
  count: number;
3542
3264
  /**
3543
- * An optional filter that represents a specified bucket, available only for date aggregations.
3265
+ * An optional filter that represents a specified bucket, available for date and range aggregations.
3544
3266
  * @public
3545
3267
  */
3546
3268
  filter?: ListConversationsFilter | undefined;
3547
3269
  }
3548
3270
  /**
3271
+ * @deprecated deprecated.
3549
3272
  * @public
3550
3273
  */
3551
3274
  export interface InsightResult {
@@ -3553,10 +3276,10 @@ export interface InsightResult {
3553
3276
  /**
3554
3277
  * The list of buckets generated for this insight.
3555
3278
  *
3556
- * @deprecated
3279
+ * @deprecated deprecated.
3557
3280
  * @public
3558
3281
  */
3559
- buckets: (InsightsBucket)[];
3282
+ buckets: InsightsBucket[];
3560
3283
  }
3561
3284
  /**
3562
3285
  * @public
@@ -3605,13 +3328,16 @@ export declare namespace ListConversationsItemEvent {
3605
3328
  chat?: never;
3606
3329
  $unknown: [string, any];
3607
3330
  }
3331
+ /**
3332
+ * @deprecated unused in schema-serde mode.
3333
+ *
3334
+ */
3608
3335
  interface Visitor<T> {
3609
3336
  call: (value: CallRecord) => T;
3610
3337
  conference: (value: ConferenceRecord) => T;
3611
3338
  chat: (value: ChatRecord) => T;
3612
3339
  _: (name: string, value: any) => T;
3613
3340
  }
3614
- const visit: <T>(value: ListConversationsItemEvent, visitor: Visitor<T>) => T;
3615
3341
  }
3616
3342
  /**
3617
3343
  * @public
@@ -3633,7 +3359,7 @@ export interface ListConversationsItemHighlightTranscriptionItem {
3633
3359
  * @public
3634
3360
  */
3635
3361
  export interface ListConversationsItemHighlight {
3636
- transcription?: (ListConversationsItemHighlightTranscriptionItem)[] | undefined;
3362
+ transcription?: ListConversationsItemHighlightTranscriptionItem[] | undefined;
3637
3363
  summary?: ListConversationsItemHighlightSummary | undefined;
3638
3364
  subject?: string | undefined;
3639
3365
  }
@@ -3686,7 +3412,7 @@ export interface ListConversationsItemSummary {
3686
3412
  status: InsightsStatus;
3687
3413
  title?: string | undefined;
3688
3414
  brief?: string | undefined;
3689
- insights?: (ListConversationsItemInsight)[] | undefined;
3415
+ insights?: ListConversationsItemInsight[] | undefined;
3690
3416
  language?: string | undefined;
3691
3417
  }
3692
3418
  /**
@@ -3702,7 +3428,7 @@ export interface ListConversationsItem {
3702
3428
  * @public
3703
3429
  */
3704
3430
  export interface ListConversationsOutput {
3705
- items: (ListConversationsItem)[];
3431
+ items: ListConversationsItem[];
3706
3432
  /**
3707
3433
  * A temporary parameter which would be removed in next updates.
3708
3434
  * @public
@@ -3715,10 +3441,10 @@ export interface ListConversationsOutput {
3715
3441
  export interface ListConversationsAggregationsInput {
3716
3442
  company?: string | undefined;
3717
3443
  /**
3718
- * A list of insights to select. Default - all projections, direction and duration.
3444
+ * A list of insights to select. Default - all projections, direction, duration, connectTime, talkTime, waitTime, queueTime, and holdTime.
3719
3445
  * @public
3720
3446
  */
3721
- insights?: (AggregationDefinition)[] | undefined;
3447
+ insights?: AggregationDefinition[] | undefined;
3722
3448
  filter?: ListConversationsFilter | undefined;
3723
3449
  }
3724
3450
  /**
@@ -3734,7 +3460,7 @@ export interface ListConversationsAggregationsOutput {
3734
3460
  * Top-level distribution buckets as per the first grouping. Each bucket can contain nested child buckets for subsequent groupings.
3735
3461
  * @public
3736
3462
  */
3737
- result?: (FlatAggregationResult)[] | undefined;
3463
+ result?: FlatAggregationResult[] | undefined;
3738
3464
  }
3739
3465
  /**
3740
3466
  * @public
@@ -3742,10 +3468,10 @@ export interface ListConversationsAggregationsOutput {
3742
3468
  export interface ListConversationsInsightsInput {
3743
3469
  company?: string | undefined;
3744
3470
  /**
3745
- * A list of insights to select. Default - all projections, direction and duration.
3471
+ * A list of insights to select. Default - all projections, direction, duration, connectTime, talkTime, waitTime, queueTime, and holdTime.
3746
3472
  * @public
3747
3473
  */
3748
- insights?: (AggregationDefinition)[] | undefined;
3474
+ insights?: AggregationDefinition[] | undefined;
3749
3475
  filter?: ListConversationsFilter | undefined;
3750
3476
  }
3751
3477
  /**
@@ -3760,17 +3486,17 @@ export interface ListConversationsInsightsOutput {
3760
3486
  /**
3761
3487
  * Top-level distribution buckets as per the first grouping. Each bucket can contain nested child buckets for subsequent groupings.
3762
3488
  *
3763
- * @deprecated
3489
+ * @deprecated deprecated.
3764
3490
  * @public
3765
3491
  */
3766
- result?: (InsightResult)[] | undefined;
3492
+ result?: InsightResult[] | undefined;
3767
3493
  }
3768
3494
  /**
3769
3495
  * @public
3770
3496
  */
3771
3497
  export interface ListConversationsInsightsAggregationsInput {
3772
3498
  company?: string | undefined;
3773
- aggregations: (AggregationDefinition)[];
3499
+ aggregations: AggregationDefinition[];
3774
3500
  filter?: ListConversationsFilter | undefined;
3775
3501
  }
3776
3502
  /**
@@ -3778,7 +3504,7 @@ export interface ListConversationsInsightsAggregationsInput {
3778
3504
  */
3779
3505
  export interface ListConversationsNestedAggregationsInput {
3780
3506
  company?: string | undefined;
3781
- aggregations: (AggregationDefinition)[];
3507
+ aggregations: AggregationDefinition[];
3782
3508
  filter?: ListConversationsFilter | undefined;
3783
3509
  }
3784
3510
  /**
@@ -3800,7 +3526,7 @@ export interface ListDashboardsInput {
3800
3526
  * @public
3801
3527
  */
3802
3528
  export interface ListDashboardsOutput {
3803
- dashboards: (Dashboard)[];
3529
+ dashboards: Dashboard[];
3804
3530
  }
3805
3531
  /**
3806
3532
  * @public
@@ -3821,7 +3547,7 @@ export interface ListFiltersInput {
3821
3547
  * @public
3822
3548
  */
3823
3549
  export interface ListFiltersOutput {
3824
- filters: (ListFiltersItem)[];
3550
+ filters: ListFiltersItem[];
3825
3551
  }
3826
3552
  /**
3827
3553
  * @public
@@ -3842,8 +3568,8 @@ export interface ListPinnedDashboardsInput {
3842
3568
  * @public
3843
3569
  */
3844
3570
  export interface ListPinnedDashboardsOutput {
3845
- pinnedDashboardsIds: (string)[];
3846
- pinnedDashboards: (Dashboard)[];
3571
+ pinnedDashboardsIds: string[];
3572
+ pinnedDashboards: Dashboard[];
3847
3573
  }
3848
3574
  /**
3849
3575
  * @public
@@ -3862,19 +3588,6 @@ export interface ListPlaylistItemsInput {
3862
3588
  playlistId: string;
3863
3589
  exclusiveStartKey?: string | undefined;
3864
3590
  }
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
3591
  /**
3879
3592
  * @public
3880
3593
  */
@@ -3891,7 +3604,7 @@ export interface PlaylistItem {
3891
3604
  * @public
3892
3605
  */
3893
3606
  export interface ListPlaylistItemsOutput {
3894
- items: (PlaylistItem)[];
3607
+ items: PlaylistItem[];
3895
3608
  lastEvaluatedKey?: string | undefined;
3896
3609
  }
3897
3610
  /**
@@ -3913,7 +3626,7 @@ export interface ListPlaylistsInput {
3913
3626
  * @public
3914
3627
  */
3915
3628
  export interface ListPlaylistsOutput {
3916
- playlists: (Playlist)[];
3629
+ playlists: Playlist[];
3917
3630
  }
3918
3631
  /**
3919
3632
  * @public
@@ -3929,12 +3642,12 @@ export interface ListProjectionsInput {
3929
3642
  * @public
3930
3643
  */
3931
3644
  export interface ListProjectionsOutput {
3932
- projections: (Projection)[];
3645
+ projections: Projection[];
3933
3646
  /**
3934
3647
  * Compatibility field for legacy clients. Categories are simulated from projection `category`/`categoryId` values.
3935
3648
  * @public
3936
3649
  */
3937
- categories?: (ProjectionsCategory)[] | undefined;
3650
+ categories?: ProjectionsCategory[] | undefined;
3938
3651
  }
3939
3652
  /**
3940
3653
  * @public
@@ -3965,8 +3678,8 @@ export interface WatchItem {
3965
3678
  * @public
3966
3679
  */
3967
3680
  export interface ListWatchHistoryOutput {
3968
- items: (ListConversationsItem)[];
3969
- itemsState: (WatchItem)[];
3681
+ items: ListConversationsItem[];
3682
+ itemsState: WatchItem[];
3970
3683
  lastEvaluatedKey?: string | undefined;
3971
3684
  }
3972
3685
  /**
@@ -3990,7 +3703,7 @@ export interface PauseProjectionOutput {
3990
3703
  * @public
3991
3704
  */
3992
3705
  export interface PlaylistAccessNotify {
3993
- emails: (string)[];
3706
+ emails: string[];
3994
3707
  message?: string | undefined;
3995
3708
  }
3996
3709
  /**
@@ -4178,7 +3891,7 @@ export interface UpdatePinnedDashboardsInput {
4178
3891
  * @public
4179
3892
  */
4180
3893
  user?: string | undefined;
4181
- pinned: (string)[];
3894
+ pinned: string[];
4182
3895
  }
4183
3896
  /**
4184
3897
  * @public
@@ -4245,7 +3958,7 @@ export interface UpdateProjectionInput {
4245
3958
  /**
4246
3959
  * Compatibility field for legacy clients. Use `category` instead.
4247
3960
  *
4248
- * @deprecated
3961
+ * @deprecated deprecated.
4249
3962
  * @public
4250
3963
  */
4251
3964
  categoryId?: string | undefined;
@@ -4255,10 +3968,10 @@ export interface UpdateProjectionInput {
4255
3968
  /**
4256
3969
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
4257
3970
  *
4258
- * @deprecated
3971
+ * @deprecated deprecated.
4259
3972
  * @public
4260
3973
  */
4261
- conditions?: (ProjectionCondition)[] | undefined;
3974
+ conditions?: ProjectionCondition[] | undefined;
4262
3975
  /**
4263
3976
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
4264
3977
  * @public
@@ -4274,7 +3987,7 @@ export interface UpdateProjectionInput {
4274
3987
  * @public
4275
3988
  */
4276
3989
  group?: string | undefined;
4277
- fields: (ProjectionField)[];
3990
+ fields: ProjectionField[];
4278
3991
  /**
4279
3992
  * The unique identifier of the tenant when a service token is used.
4280
3993
  * @public
@@ -4348,7 +4061,7 @@ export interface AggregationBucket {
4348
4061
  */
4349
4062
  interval?: AggregationDateInterval | undefined;
4350
4063
  /**
4351
- * An optional filter that represents a specified bucket, available only for date aggregations.
4064
+ * An optional filter that represents a specified bucket, available for date and range aggregations.
4352
4065
  * @public
4353
4066
  */
4354
4067
  filter?: ListConversationsFilter | undefined;
@@ -4371,7 +4084,7 @@ export interface AggregationResult {
4371
4084
  * The list of buckets generated for this aggregation level.
4372
4085
  * @public
4373
4086
  */
4374
- buckets: (AggregationBucket)[];
4087
+ buckets: AggregationBucket[];
4375
4088
  }
4376
4089
  /**
4377
4090
  * @public