@wildix/wda-insights-client 1.1.45 → 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 -471
  70. package/dist-cjs/runtimeConfig.browser.js +11 -11
  71. package/dist-cjs/runtimeConfig.js +22 -18
  72. package/dist-cjs/runtimeConfig.shared.js +30 -10
  73. package/dist-cjs/runtimeExtensions.js +6 -5
  74. package/dist-cjs/schemas/schemas_0.js +2178 -0
  75. package/dist-es/WdaInsights.js +3 -3
  76. package/dist-es/WdaInsightsClient.js +30 -22
  77. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  78. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  79. package/dist-es/commands/CreateDashboardCommand.js +9 -10
  80. package/dist-es/commands/CreateFilterCommand.js +9 -10
  81. package/dist-es/commands/CreatePlaylistCommand.js +9 -10
  82. package/dist-es/commands/CreateProjectionCommand.js +9 -10
  83. package/dist-es/commands/CreateProjectionsCategoryCommand.js +9 -10
  84. package/dist-es/commands/DeleteDashboardCommand.js +9 -10
  85. package/dist-es/commands/DeleteFilterCommand.js +9 -10
  86. package/dist-es/commands/DeletePlaylistCommand.js +9 -10
  87. package/dist-es/commands/DeletePlaylistItemCommand.js +9 -10
  88. package/dist-es/commands/DeleteProjectionCommand.js +9 -10
  89. package/dist-es/commands/DeleteProjectionsCategoryCommand.js +9 -10
  90. package/dist-es/commands/DisableProjectionCommand.js +9 -10
  91. package/dist-es/commands/EnableProjectionCommand.js +9 -10
  92. package/dist-es/commands/GetAnalysisSettingsCommand.js +9 -10
  93. package/dist-es/commands/GetCallCharacteristicsCommand.js +9 -10
  94. package/dist-es/commands/GetCallInsightsCommand.js +9 -10
  95. package/dist-es/commands/GetCallStateCommand.js +9 -10
  96. package/dist-es/commands/GetCallSummaryCommand.js +9 -10
  97. package/dist-es/commands/GetChatInsightsCommand.js +9 -10
  98. package/dist-es/commands/GetChatStateCommand.js +9 -10
  99. package/dist-es/commands/GetChatSummaryCommand.js +9 -10
  100. package/dist-es/commands/GetConferenceInsightsCommand.js +9 -10
  101. package/dist-es/commands/GetConferenceRecordingPresignedDownloadUrlCommand.js +9 -10
  102. package/dist-es/commands/GetConferenceStateCommand.js +9 -10
  103. package/dist-es/commands/GetConferenceSummaryCommand.js +9 -10
  104. package/dist-es/commands/GetConferenceTimeFramesCommand.js +9 -10
  105. package/dist-es/commands/GetDashboardCommand.js +9 -10
  106. package/dist-es/commands/GetPlaylistCommand.js +9 -10
  107. package/dist-es/commands/GetProjectionCommand.js +9 -10
  108. package/dist-es/commands/ListConversationsAggregationsCommand.js +9 -10
  109. package/dist-es/commands/ListConversationsCommand.js +9 -10
  110. package/dist-es/commands/ListConversationsInsightsAggregationsCommand.js +9 -10
  111. package/dist-es/commands/ListConversationsInsightsCommand.js +9 -10
  112. package/dist-es/commands/ListConversationsNestedAggregationsCommand.js +9 -10
  113. package/dist-es/commands/ListDashboardsCommand.js +9 -10
  114. package/dist-es/commands/ListFiltersCommand.js +9 -10
  115. package/dist-es/commands/ListPinnedDashboardsCommand.js +9 -10
  116. package/dist-es/commands/ListPlaylistItemsCommand.js +9 -10
  117. package/dist-es/commands/ListPlaylistsCommand.js +9 -10
  118. package/dist-es/commands/ListProjectionsCommand.js +9 -10
  119. package/dist-es/commands/ListWatchHistoryCommand.js +9 -10
  120. package/dist-es/commands/PauseProjectionCommand.js +9 -10
  121. package/dist-es/commands/PutAnalysisSettingsCommand.js +9 -10
  122. package/dist-es/commands/PutPlaylistItemCommand.js +9 -10
  123. package/dist-es/commands/QueryConversationsCountCommand.js +9 -10
  124. package/dist-es/commands/ScheduleCallSummaryGenerationCommand.js +9 -10
  125. package/dist-es/commands/ScheduleConferenceSummaryGenerationCommand.js +9 -10
  126. package/dist-es/commands/UpdateDashboardAccessCommand.js +9 -10
  127. package/dist-es/commands/UpdateDashboardCommand.js +9 -10
  128. package/dist-es/commands/UpdateFilterCommand.js +9 -10
  129. package/dist-es/commands/UpdatePinnedDashboardsCommand.js +9 -10
  130. package/dist-es/commands/UpdatePlaylistAccessCommand.js +9 -10
  131. package/dist-es/commands/UpdatePlaylistCommand.js +9 -10
  132. package/dist-es/commands/UpdateProjectionCommand.js +9 -10
  133. package/dist-es/commands/UpdateProjectionsCategoryCommand.js +9 -10
  134. package/dist-es/commands/WatchCommand.js +9 -10
  135. package/dist-es/commands/index.js +4 -4
  136. package/dist-es/endpoint/EndpointParameters.js +12 -0
  137. package/dist-es/endpoint/bdd.js +25 -0
  138. package/dist-es/endpoint/endpointResolver.js +12 -0
  139. package/dist-es/index.js +4 -1
  140. package/dist-es/models/WdaInsightsServiceException.js +1 -1
  141. package/dist-es/models/enums.js +222 -0
  142. package/dist-es/models/errors.js +61 -0
  143. package/dist-es/models/models_0.js +1 -464
  144. package/dist-es/runtimeConfig.browser.js +7 -7
  145. package/dist-es/runtimeConfig.js +17 -13
  146. package/dist-es/runtimeConfig.shared.js +24 -4
  147. package/dist-es/runtimeExtensions.js +6 -5
  148. package/dist-es/schemas/schemas_0.js +2170 -0
  149. package/dist-types/WdaInsights.d.ts +57 -57
  150. package/dist-types/WdaInsightsClient.d.ts +86 -68
  151. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  152. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  153. package/dist-types/commands/CreateDashboardCommand.d.ts +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 +32 -25
  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 +11 -9
  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 +11 -9
  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 -753
  219. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  220. package/dist-types/runtimeConfig.d.ts +34 -15
  221. package/dist-types/runtimeConfig.native.d.ts +36 -17
  222. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  223. package/dist-types/runtimeExtensions.d.ts +1 -1
  224. package/dist-types/schemas/schemas_0.d.ts +299 -0
  225. package/package.json +14 -40
  226. package/dist-cjs/models/index.js +0 -4
  227. package/dist-cjs/protocols/Aws_restJson1.js +0 -2406
  228. package/dist-es/models/index.js +0 -1
  229. package/dist-es/protocols/Aws_restJson1.js +0 -2289
  230. package/dist-types/models/index.d.ts +0 -1
  231. package/dist-types/protocols/Aws_restJson1.d.ts +0 -506
@@ -1,108 +1,5 @@
1
- import { WdaInsightsServiceException as __BaseException } from "./WdaInsightsServiceException";
2
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
3
- import { DocumentType as __DocumentType } from "@smithy/types";
4
- /**
5
- * @public
6
- */
7
- export declare class ForbiddenException extends __BaseException {
8
- readonly name: "ForbiddenException";
9
- readonly $fault: "client";
10
- /**
11
- * @internal
12
- */
13
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
14
- }
15
- /**
16
- * @public
17
- */
18
- export declare class NotFoundException extends __BaseException {
19
- readonly name: "NotFoundException";
20
- readonly $fault: "client";
21
- /**
22
- * @internal
23
- */
24
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
25
- }
26
- /**
27
- * @public
28
- */
29
- export declare class ValidationException extends __BaseException {
30
- readonly name: "ValidationException";
31
- readonly $fault: "client";
32
- /**
33
- * @internal
34
- */
35
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
36
- }
37
- /**
38
- * @public
39
- * @enum
40
- */
41
- export declare const CallDirection: {
42
- readonly INBOUND: "INBOUND";
43
- readonly INTERNAL: "INTERNAL";
44
- readonly OUTBOUND: "OUTBOUND";
45
- readonly UNDEFINED: "UNDEFINED";
46
- };
47
- /**
48
- * @public
49
- */
50
- export type CallDirection = typeof CallDirection[keyof typeof CallDirection];
51
- /**
52
- * @public
53
- * @enum
54
- */
55
- export declare const ConversationStatus: {
56
- readonly COMPLETED: "COMPLETED";
57
- readonly MISSED: "MISSED";
58
- };
59
- /**
60
- * @public
61
- */
62
- export type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationStatus];
63
- /**
64
- * @public
65
- * @enum
66
- */
67
- export declare const License: {
68
- readonly UC: "uc";
69
- readonly XBEES: "x-bees";
70
- };
71
- /**
72
- * @public
73
- */
74
- export type License = typeof License[keyof typeof License];
75
- /**
76
- * @public
77
- * @enum
78
- */
79
- export declare const RecordType: {
80
- readonly CALL: "call";
81
- readonly CALL_ANNOTATIONS: "call_annotations";
82
- readonly CALL_TRANSCRIPTION: "call_transcription";
83
- readonly CHAT: "chat";
84
- readonly CHAT_ANNOTATIONS: "chat_annotations";
85
- readonly CHAT_TRANSCRIPTION: "chat_transcription";
86
- readonly CONFERENCE: "conference";
87
- readonly CONFERENCE_ANNOTATIONS: "conference_annotations";
88
- readonly CONFERENCE_TRANSCRIPTION: "conference_transcription";
89
- };
90
- /**
91
- * @public
92
- */
93
- export type RecordType = typeof RecordType[keyof typeof RecordType];
94
- /**
95
- * @public
96
- * @enum
97
- */
98
- export declare const AnnotationsStatus: {
99
- readonly AVAILABLE: "AVAILABLE";
100
- readonly UNAVAILABLE: "UNAVAILABLE";
101
- };
102
- /**
103
- * @public
104
- */
105
- export type AnnotationsStatus = typeof AnnotationsStatus[keyof typeof AnnotationsStatus];
1
+ import type { DocumentType as __DocumentType } from "@smithy/types";
2
+ import type { AggregationDateInterval, AnnotationsStatus, CallDevice, CallDirection, CallFlowAttachmentStatus, CallFlowAttachmentType, CallFlowTranscriptionStatus, CallParticipantRole, CallParticipantType, CallRecordOwner, CallRecordPauseReason, ChannelAccess, ChannelContextEventAttendeeStatus, ChannelContextSource, ChannelType, ChannelWhatsAppStatus, ChatDirection, ChatParticipantRole, ChatParticipantType, ChatStatus, ChatTag, ConferenceDirection, ConferenceParticipantRole, ConferenceParticipantType, ConferenceTranscriptionStatus, ConversationFileCategory, ConversationStatus, DashboardPermission, DashboardVisibility, DownloadStrategy, InsightsReason, InsightsStatus, License, ListConversationsFilterPredefinedDateType, PbxLicenseType, PlaylistItemStatus, PlaylistPermission, PlaylistVisibility, ProjectionEntityConditionValue, ProjectionStatus, RecordType } from "./enums";
106
3
  /**
107
4
  * @public
108
5
  */
@@ -116,31 +13,6 @@ export interface CallFlowAttachmentDestination {
116
13
  groupId?: string | undefined;
117
14
  groupName?: string | undefined;
118
15
  }
119
- /**
120
- * @public
121
- * @enum
122
- */
123
- export declare const CallRecordOwner: {
124
- readonly CALLEE: "callee";
125
- readonly CALLER: "caller";
126
- readonly SYSTEM: "system";
127
- };
128
- /**
129
- * @public
130
- */
131
- export type CallRecordOwner = typeof CallRecordOwner[keyof typeof CallRecordOwner];
132
- /**
133
- * @public
134
- * @enum
135
- */
136
- export declare const CallFlowAttachmentStatus: {
137
- readonly ERROR: "error";
138
- readonly OK: "ok";
139
- };
140
- /**
141
- * @public
142
- */
143
- export type CallFlowAttachmentStatus = typeof CallFlowAttachmentStatus[keyof typeof CallFlowAttachmentStatus];
144
16
  /**
145
17
  * @public
146
18
  */
@@ -151,7 +23,7 @@ export interface CallFlowFax {
151
23
  * @public
152
24
  */
153
25
  status?: CallFlowAttachmentStatus | undefined;
154
- destinations?: (CallFlowAttachmentDestination)[] | undefined;
26
+ destinations?: CallFlowAttachmentDestination[] | undefined;
155
27
  owner?: CallRecordOwner | undefined;
156
28
  /**
157
29
  * Text with the reason for the error in case of unsuccessful fax delivery
@@ -159,18 +31,6 @@ export interface CallFlowFax {
159
31
  */
160
32
  error?: string | undefined;
161
33
  }
162
- /**
163
- * @public
164
- * @enum
165
- */
166
- export declare const CallRecordPauseReason: {
167
- readonly HOLD: "hold";
168
- readonly PAUSE: "pause";
169
- };
170
- /**
171
- * @public
172
- */
173
- export type CallRecordPauseReason = typeof CallRecordPauseReason[keyof typeof CallRecordPauseReason];
174
34
  /**
175
35
  * @public
176
36
  */
@@ -188,14 +48,14 @@ export interface CallFlowRecording {
188
48
  end: number;
189
49
  owner: CallRecordOwner;
190
50
  url: string;
191
- pauses: (CallRecordPause)[];
51
+ pauses: CallRecordPause[];
192
52
  }
193
53
  /**
194
54
  * @public
195
55
  */
196
56
  export interface CallFlowVoicemail {
197
57
  url: string;
198
- destinations?: (CallFlowAttachmentDestination)[] | undefined;
58
+ destinations?: CallFlowAttachmentDestination[] | undefined;
199
59
  owner?: CallRecordOwner | undefined;
200
60
  }
201
61
  /**
@@ -233,70 +93,17 @@ export declare namespace CallFlowAttachment {
233
93
  voicemail?: never;
234
94
  $unknown: [string, any];
235
95
  }
96
+ /**
97
+ * @deprecated unused in schema-serde mode.
98
+ *
99
+ */
236
100
  interface Visitor<T> {
237
101
  recording: (value: CallFlowRecording) => T;
238
102
  fax: (value: CallFlowFax) => T;
239
103
  voicemail: (value: CallFlowVoicemail) => T;
240
104
  _: (name: string, value: any) => T;
241
105
  }
242
- const visit: <T>(value: CallFlowAttachment, visitor: Visitor<T>) => T;
243
106
  }
244
- /**
245
- * @public
246
- * @enum
247
- */
248
- export declare const CallFlowAttachmentType: {
249
- readonly FAX: "FAX";
250
- readonly VOICEMAIL: "VOICEMAIL";
251
- };
252
- /**
253
- * @public
254
- */
255
- export type CallFlowAttachmentType = typeof CallFlowAttachmentType[keyof typeof CallFlowAttachmentType];
256
- /**
257
- * @public
258
- * @enum
259
- */
260
- export declare const CallParticipantRole: {
261
- readonly AGENT: "AGENT";
262
- readonly CLIENT: "CLIENT";
263
- };
264
- /**
265
- * @public
266
- */
267
- export type CallParticipantRole = typeof CallParticipantRole[keyof typeof CallParticipantRole];
268
- /**
269
- * @public
270
- * @enum
271
- */
272
- export declare const CallParticipantType: {
273
- readonly LOCAL: "LOCAL";
274
- readonly REMOTE: "REMOTE";
275
- };
276
- /**
277
- * @public
278
- */
279
- export type CallParticipantType = typeof CallParticipantType[keyof typeof CallParticipantType];
280
- /**
281
- * @public
282
- * @enum
283
- */
284
- export declare const CallDevice: {
285
- readonly COLLABORATION_ANDROID: "COLLABORATION_ANDROID";
286
- readonly COLLABORATION_IOS: "COLLABORATION_IOS";
287
- readonly COLLABORATION_WEB: "COLLABORATION_WEB";
288
- readonly UNKNOWN: "UNKNOWN";
289
- readonly VOICEBOT: "VOICEBOT";
290
- readonly WILDIX_DEVICE: "WILDIX_DEVICE";
291
- readonly WILDIX_PHONE: "WILDIX_PHONE";
292
- readonly XBEES_ANDROID: "XBEES_ANDROID";
293
- readonly XBEES_IOS: "XBEES_IOS";
294
- readonly XBEES_WEB: "XBEES_WEB";
295
- };
296
- /**
297
- * @public
298
- */
299
- export type CallDevice = typeof CallDevice[keyof typeof CallDevice];
300
107
  /**
301
108
  * @public
302
109
  */
@@ -340,22 +147,9 @@ export interface CallParticipant {
340
147
  * @public
341
148
  */
342
149
  export interface CallFlowNotifications {
343
- destinations?: (CallFlowAttachmentDestination)[] | undefined;
344
- type?: (string)[] | undefined;
150
+ destinations?: CallFlowAttachmentDestination[] | undefined;
151
+ type?: string[] | undefined;
345
152
  }
346
- /**
347
- * @public
348
- * @enum
349
- */
350
- export declare const CallFlowTranscriptionStatus: {
351
- readonly AVAILABLE: "AVAILABLE";
352
- readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
353
- readonly UNAVAILABLE: "UNAVAILABLE";
354
- };
355
- /**
356
- * @public
357
- */
358
- export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[keyof typeof CallFlowTranscriptionStatus];
359
153
  /**
360
154
  * @public
361
155
  */
@@ -408,25 +202,25 @@ export interface CallRecord {
408
202
  * @public
409
203
  */
410
204
  queuePosition?: number | undefined;
411
- tags?: (string)[] | undefined;
412
- flags?: (string)[] | undefined;
205
+ tags?: string[] | undefined;
206
+ flags?: string[] | undefined;
413
207
  callerMos?: string | undefined;
414
208
  calleeMos?: string | undefined;
415
209
  xhoppersConfId?: string | undefined;
416
210
  /**
417
211
  * Consider to use `attachments` instead.
418
212
  *
419
- * @deprecated
213
+ * @deprecated deprecated.
420
214
  * @public
421
215
  */
422
- recordings?: (string)[] | undefined;
216
+ recordings?: string[] | undefined;
423
217
  /**
424
218
  * Consider to use `attachments` instead.
425
219
  *
426
- * @deprecated
220
+ * @deprecated deprecated.
427
221
  * @public
428
222
  */
429
- recordingsData?: (CallFlowRecording)[] | undefined;
223
+ recordingsData?: CallFlowRecording[] | undefined;
430
224
  mergeWith?: string | undefined;
431
225
  splitReason?: string | undefined;
432
226
  splitTransferType?: string | undefined;
@@ -442,45 +236,33 @@ export interface CallRecord {
442
236
  /**
443
237
  * Consider to use `attachments` instead.
444
238
  *
445
- * @deprecated
239
+ * @deprecated deprecated.
446
240
  * @public
447
241
  */
448
242
  attachment?: string | undefined;
449
243
  /**
450
244
  * Consider to use `attachments` instead.
451
245
  *
452
- * @deprecated
246
+ * @deprecated deprecated.
453
247
  * @public
454
248
  */
455
249
  attachmentType?: CallFlowAttachmentType | undefined;
456
250
  /**
457
251
  * Consider to use `attachments` instead.
458
252
  *
459
- * @deprecated
253
+ * @deprecated deprecated.
460
254
  * @public
461
255
  */
462
- attachmentDestinations?: (CallFlowAttachmentDestination)[] | undefined;
463
- attachments?: (CallFlowAttachment)[] | undefined;
256
+ attachmentDestinations?: CallFlowAttachmentDestination[] | undefined;
257
+ attachments?: CallFlowAttachment[] | undefined;
464
258
  notifications?: CallFlowNotifications | undefined;
465
259
  id: string;
466
260
  pbx: string;
467
261
  time: number;
468
262
  company: string;
469
- licenses: (License)[];
263
+ licenses: License[];
470
264
  type: RecordType;
471
265
  }
472
- /**
473
- * @public
474
- * @enum
475
- */
476
- export declare const ChannelAccess: {
477
- readonly PRIVATE: "private";
478
- readonly PUBLIC: "public";
479
- };
480
- /**
481
- * @public
482
- */
483
- export type ChannelAccess = typeof ChannelAccess[keyof typeof ChannelAccess];
484
266
  /**
485
267
  * @public
486
268
  */
@@ -503,32 +285,6 @@ export interface User {
503
285
  createdAt?: string | undefined;
504
286
  updatedAt?: string | undefined;
505
287
  }
506
- /**
507
- * @public
508
- * @enum
509
- */
510
- export declare const ChannelType: {
511
- readonly DIRECT: "direct";
512
- readonly GROUP: "group";
513
- };
514
- /**
515
- * @public
516
- */
517
- export type ChannelType = typeof ChannelType[keyof typeof ChannelType];
518
- /**
519
- * @public
520
- * @enum
521
- */
522
- export declare const ChannelContextEventAttendeeStatus: {
523
- readonly ACCEPTED: "accepted";
524
- readonly DECLINED: "declined";
525
- readonly NONE: "none";
526
- readonly TENTATIVE: "tentative";
527
- };
528
- /**
529
- * @public
530
- */
531
- export type ChannelContextEventAttendeeStatus = typeof ChannelContextEventAttendeeStatus[keyof typeof ChannelContextEventAttendeeStatus];
532
288
  /**
533
289
  * @public
534
290
  */
@@ -546,7 +302,7 @@ export interface ChannelContextEvent {
546
302
  start?: string | undefined;
547
303
  end?: string | undefined;
548
304
  summary?: string | undefined;
549
- attendees?: (ChannelContextEventAttendee)[] | undefined;
305
+ attendees?: ChannelContextEventAttendee[] | undefined;
550
306
  }
551
307
  /**
552
308
  * @public
@@ -558,37 +314,15 @@ export interface ChannelContextPushToTalk {
558
314
  */
559
315
  broadcastId?: string | undefined;
560
316
  }
561
- /**
562
- * @public
563
- * @enum
564
- */
565
- export declare const ChannelContextSource: {
566
- readonly KITE: "kite";
567
- };
568
- /**
569
- * @public
570
- */
571
- export type ChannelContextSource = typeof ChannelContextSource[keyof typeof ChannelContextSource];
572
317
  /**
573
318
  * @public
574
319
  */
575
320
  export interface ChannelContext {
576
321
  source?: ChannelContextSource | undefined;
577
322
  target?: string | undefined;
578
- events?: (ChannelContextEvent)[] | undefined;
323
+ events?: ChannelContextEvent[] | undefined;
579
324
  ptt?: ChannelContextPushToTalk | undefined;
580
325
  }
581
- /**
582
- * @public
583
- * @enum
584
- */
585
- export declare const ChannelWhatsAppStatus: {
586
- readonly CHANNEL_CLOSED: "24h_channel_closed";
587
- };
588
- /**
589
- * @public
590
- */
591
- export type ChannelWhatsAppStatus = typeof ChannelWhatsAppStatus[keyof typeof ChannelWhatsAppStatus];
592
326
  /**
593
327
  * @public
594
328
  */
@@ -635,43 +369,6 @@ export interface Channel {
635
369
  createdBy: string;
636
370
  updatedAt?: string | undefined;
637
371
  }
638
- /**
639
- * @public
640
- * @enum
641
- */
642
- export declare const ChatDirection: {
643
- readonly INBOUND: "INBOUND";
644
- readonly INTERNAL: "INTERNAL";
645
- readonly OUTBOUND: "OUTBOUND";
646
- };
647
- /**
648
- * @public
649
- */
650
- export type ChatDirection = typeof ChatDirection[keyof typeof ChatDirection];
651
- /**
652
- * @public
653
- * @enum
654
- */
655
- export declare const ChatParticipantRole: {
656
- readonly AGENT: "AGENT";
657
- readonly CLIENT: "CLIENT";
658
- };
659
- /**
660
- * @public
661
- */
662
- export type ChatParticipantRole = typeof ChatParticipantRole[keyof typeof ChatParticipantRole];
663
- /**
664
- * @public
665
- * @enum
666
- */
667
- export declare const ChatParticipantType: {
668
- readonly LOCAL: "LOCAL";
669
- readonly REMOTE: "REMOTE";
670
- };
671
- /**
672
- * @public
673
- */
674
- export type ChatParticipantType = typeof ChatParticipantType[keyof typeof ChatParticipantType];
675
372
  /**
676
373
  * @public
677
374
  */
@@ -703,34 +400,6 @@ export interface ChatParticipant {
703
400
  id: string;
704
401
  info: ChatParticipantInfo;
705
402
  }
706
- /**
707
- * @public
708
- * @enum
709
- */
710
- export declare const ChatStatus: {
711
- readonly COMPLETED: "COMPLETED";
712
- readonly MISSED: "MISSED";
713
- readonly WAITFIRSTREPLY: "WAITFIRSTREPLY";
714
- readonly WAITREPLYFROMAGENT: "WAITREPLYFROMAGENT";
715
- readonly WAITREPLYFROMGUEST: "WAITREPLYFROMGUEST";
716
- };
717
- /**
718
- * @public
719
- */
720
- export type ChatStatus = typeof ChatStatus[keyof typeof ChatStatus];
721
- /**
722
- * @public
723
- * @enum
724
- */
725
- export declare const ChatTag: {
726
- readonly SMS: "sms";
727
- readonly TELEPHONY: "telephony";
728
- readonly WHATSAPP: "whatsapp";
729
- };
730
- /**
731
- * @public
732
- */
733
- export type ChatTag = typeof ChatTag[keyof typeof ChatTag];
734
403
  /**
735
404
  * @public
736
405
  */
@@ -756,68 +425,13 @@ export interface ChatRecord {
756
425
  subject?: string | undefined;
757
426
  service?: string | undefined;
758
427
  serviceTitle?: string | undefined;
759
- tags?: (ChatTag)[] | undefined;
428
+ tags?: ChatTag[] | undefined;
760
429
  channel: Channel;
761
430
  status?: ChatStatus | undefined;
762
- participants: (ChatParticipant)[];
431
+ participants: ChatParticipant[];
763
432
  annotationsStatus?: AnnotationsStatus | undefined;
764
433
  type: RecordType;
765
434
  }
766
- /**
767
- * @public
768
- * @enum
769
- */
770
- export declare const ConferenceDirection: {
771
- readonly INBOUND: "INBOUND";
772
- readonly INTERNAL: "INTERNAL";
773
- readonly OUTBOUND: "OUTBOUND";
774
- };
775
- /**
776
- * @public
777
- */
778
- export type ConferenceDirection = typeof ConferenceDirection[keyof typeof ConferenceDirection];
779
- /**
780
- * @public
781
- * @enum
782
- */
783
- export declare const PbxLicenseType: {
784
- readonly BASIC: "basic";
785
- readonly BUSINESS: "business";
786
- readonly ESSENTIAL: "essential";
787
- readonly PREMIUM: "premium";
788
- readonly WIZYCONF: "wizyconf";
789
- };
790
- /**
791
- * @public
792
- */
793
- export type PbxLicenseType = typeof PbxLicenseType[keyof typeof PbxLicenseType];
794
- /**
795
- * @public
796
- * @enum
797
- */
798
- export declare const ConferenceParticipantRole: {
799
- readonly AGENT: "AGENT";
800
- readonly CLIENT: "CLIENT";
801
- };
802
- /**
803
- * @public
804
- */
805
- export type ConferenceParticipantRole = typeof ConferenceParticipantRole[keyof typeof ConferenceParticipantRole];
806
- /**
807
- * @public
808
- * @enum
809
- */
810
- export declare const ConferenceParticipantType: {
811
- readonly EXTERNAL: "EXTERNAL";
812
- readonly EXTERNAL_DIAL_IN: "EXTERNAL_DIAL_IN";
813
- readonly PBX: "PBX";
814
- readonly PBX_SIP: "PBX_SIP";
815
- readonly XBS: "XBS";
816
- };
817
- /**
818
- * @public
819
- */
820
- export type ConferenceParticipantType = typeof ConferenceParticipantType[keyof typeof ConferenceParticipantType];
821
435
  /**
822
436
  * @public
823
437
  */
@@ -858,19 +472,6 @@ export interface ConferenceRecording {
858
472
  start: number;
859
473
  end: number;
860
474
  }
861
- /**
862
- * @public
863
- * @enum
864
- */
865
- export declare const ConferenceTranscriptionStatus: {
866
- readonly AVAILABLE: "AVAILABLE";
867
- readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
868
- readonly UNAVAILABLE: "UNAVAILABLE";
869
- };
870
- /**
871
- * @public
872
- */
873
- export type ConferenceTranscriptionStatus = typeof ConferenceTranscriptionStatus[keyof typeof ConferenceTranscriptionStatus];
874
475
  /**
875
476
  * @public
876
477
  */
@@ -887,8 +488,8 @@ export interface ConferenceRecord {
887
488
  direction: ConferenceDirection;
888
489
  service?: string | undefined;
889
490
  status?: ConversationStatus | undefined;
890
- participants: (ConferenceAnalyticsRecordParticipant)[];
891
- recordings?: (ConferenceRecording)[] | undefined;
491
+ participants: ConferenceAnalyticsRecordParticipant[];
492
+ recordings?: ConferenceRecording[] | undefined;
892
493
  transcriptionStatus: ConferenceTranscriptionStatus;
893
494
  transcriptionLanguage?: string | undefined;
894
495
  transcriptionSeconds?: number | undefined;
@@ -900,18 +501,6 @@ export interface ConferenceRecord {
900
501
  */
901
502
  export interface AggregationNoConfigurationDefinition {
902
503
  }
903
- /**
904
- * @public
905
- */
906
- export interface AggregationDateDefinition {
907
- timeZone?: string | undefined;
908
- }
909
- /**
910
- * @public
911
- */
912
- export interface AggregationDayOfWeekDefinition {
913
- timeZone?: string | undefined;
914
- }
915
504
  /**
916
505
  * @public
917
506
  */
@@ -927,7 +516,7 @@ export interface DurationGroupBucket {
927
516
  */
928
517
  from?: number | undefined;
929
518
  /**
930
- * The upper bound for this duration bucket (less than or equal to).
519
+ * The upper bound for this duration bucket (exclusive).
931
520
  * @public
932
521
  */
933
522
  to?: number | undefined;
@@ -940,7 +529,19 @@ export interface AggregationDurationDefinition {
940
529
  * A custom list of buckets to use for the duration aggregation. If not provided, default buckets will be used.
941
530
  * @public
942
531
  */
943
- 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;
944
545
  }
945
546
  /**
946
547
  * @public
@@ -958,7 +559,7 @@ export interface AggregationProjectionDefinition {
958
559
  /**
959
560
  * @public
960
561
  */
961
- 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;
962
563
  /**
963
564
  * @public
964
565
  */
@@ -967,6 +568,11 @@ export declare namespace AggregationDefinition {
967
568
  projection: AggregationProjectionDefinition;
968
569
  direction?: never;
969
570
  duration?: never;
571
+ connectTime?: never;
572
+ talkTime?: never;
573
+ waitTime?: never;
574
+ queueTime?: never;
575
+ holdTime?: never;
970
576
  service?: never;
971
577
  extension?: never;
972
578
  chatbot?: never;
@@ -992,6 +598,11 @@ export declare namespace AggregationDefinition {
992
598
  projection?: never;
993
599
  direction: AggregationNoConfigurationDefinition;
994
600
  duration?: never;
601
+ connectTime?: never;
602
+ talkTime?: never;
603
+ waitTime?: never;
604
+ queueTime?: never;
605
+ holdTime?: never;
995
606
  service?: never;
996
607
  extension?: never;
997
608
  chatbot?: never;
@@ -1017,6 +628,161 @@ export declare namespace AggregationDefinition {
1017
628
  projection?: never;
1018
629
  direction?: never;
1019
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;
1020
786
  service?: never;
1021
787
  extension?: never;
1022
788
  chatbot?: never;
@@ -1042,6 +808,11 @@ export declare namespace AggregationDefinition {
1042
808
  projection?: never;
1043
809
  direction?: never;
1044
810
  duration?: never;
811
+ connectTime?: never;
812
+ talkTime?: never;
813
+ waitTime?: never;
814
+ queueTime?: never;
815
+ holdTime?: never;
1045
816
  service: AggregationNoConfigurationDefinition;
1046
817
  extension?: never;
1047
818
  chatbot?: never;
@@ -1067,6 +838,11 @@ export declare namespace AggregationDefinition {
1067
838
  projection?: never;
1068
839
  direction?: never;
1069
840
  duration?: never;
841
+ connectTime?: never;
842
+ talkTime?: never;
843
+ waitTime?: never;
844
+ queueTime?: never;
845
+ holdTime?: never;
1070
846
  service?: never;
1071
847
  extension: AggregationNoConfigurationDefinition;
1072
848
  chatbot?: never;
@@ -1092,6 +868,11 @@ export declare namespace AggregationDefinition {
1092
868
  projection?: never;
1093
869
  direction?: never;
1094
870
  duration?: never;
871
+ connectTime?: never;
872
+ talkTime?: never;
873
+ waitTime?: never;
874
+ queueTime?: never;
875
+ holdTime?: never;
1095
876
  service?: never;
1096
877
  extension?: never;
1097
878
  chatbot: AggregationNoConfigurationDefinition;
@@ -1117,6 +898,11 @@ export declare namespace AggregationDefinition {
1117
898
  projection?: never;
1118
899
  direction?: never;
1119
900
  duration?: never;
901
+ connectTime?: never;
902
+ talkTime?: never;
903
+ waitTime?: never;
904
+ queueTime?: never;
905
+ holdTime?: never;
1120
906
  service?: never;
1121
907
  extension?: never;
1122
908
  chatbot?: never;
@@ -1142,6 +928,11 @@ export declare namespace AggregationDefinition {
1142
928
  projection?: never;
1143
929
  direction?: never;
1144
930
  duration?: never;
931
+ connectTime?: never;
932
+ talkTime?: never;
933
+ waitTime?: never;
934
+ queueTime?: never;
935
+ holdTime?: never;
1145
936
  service?: never;
1146
937
  extension?: never;
1147
938
  chatbot?: never;
@@ -1167,6 +958,11 @@ export declare namespace AggregationDefinition {
1167
958
  projection?: never;
1168
959
  direction?: never;
1169
960
  duration?: never;
961
+ connectTime?: never;
962
+ talkTime?: never;
963
+ waitTime?: never;
964
+ queueTime?: never;
965
+ holdTime?: never;
1170
966
  service?: never;
1171
967
  extension?: never;
1172
968
  chatbot?: never;
@@ -1192,6 +988,11 @@ export declare namespace AggregationDefinition {
1192
988
  projection?: never;
1193
989
  direction?: never;
1194
990
  duration?: never;
991
+ connectTime?: never;
992
+ talkTime?: never;
993
+ waitTime?: never;
994
+ queueTime?: never;
995
+ holdTime?: never;
1195
996
  service?: never;
1196
997
  extension?: never;
1197
998
  chatbot?: never;
@@ -1217,6 +1018,11 @@ export declare namespace AggregationDefinition {
1217
1018
  projection?: never;
1218
1019
  direction?: never;
1219
1020
  duration?: never;
1021
+ connectTime?: never;
1022
+ talkTime?: never;
1023
+ waitTime?: never;
1024
+ queueTime?: never;
1025
+ holdTime?: never;
1220
1026
  service?: never;
1221
1027
  extension?: never;
1222
1028
  chatbot?: never;
@@ -1242,6 +1048,11 @@ export declare namespace AggregationDefinition {
1242
1048
  projection?: never;
1243
1049
  direction?: never;
1244
1050
  duration?: never;
1051
+ connectTime?: never;
1052
+ talkTime?: never;
1053
+ waitTime?: never;
1054
+ queueTime?: never;
1055
+ holdTime?: never;
1245
1056
  service?: never;
1246
1057
  extension?: never;
1247
1058
  chatbot?: never;
@@ -1267,6 +1078,11 @@ export declare namespace AggregationDefinition {
1267
1078
  projection?: never;
1268
1079
  direction?: never;
1269
1080
  duration?: never;
1081
+ connectTime?: never;
1082
+ talkTime?: never;
1083
+ waitTime?: never;
1084
+ queueTime?: never;
1085
+ holdTime?: never;
1270
1086
  service?: never;
1271
1087
  extension?: never;
1272
1088
  chatbot?: never;
@@ -1292,6 +1108,11 @@ export declare namespace AggregationDefinition {
1292
1108
  projection?: never;
1293
1109
  direction?: never;
1294
1110
  duration?: never;
1111
+ connectTime?: never;
1112
+ talkTime?: never;
1113
+ waitTime?: never;
1114
+ queueTime?: never;
1115
+ holdTime?: never;
1295
1116
  service?: never;
1296
1117
  extension?: never;
1297
1118
  chatbot?: never;
@@ -1317,6 +1138,11 @@ export declare namespace AggregationDefinition {
1317
1138
  projection?: never;
1318
1139
  direction?: never;
1319
1140
  duration?: never;
1141
+ connectTime?: never;
1142
+ talkTime?: never;
1143
+ waitTime?: never;
1144
+ queueTime?: never;
1145
+ holdTime?: never;
1320
1146
  service?: never;
1321
1147
  extension?: never;
1322
1148
  chatbot?: never;
@@ -1342,6 +1168,11 @@ export declare namespace AggregationDefinition {
1342
1168
  projection?: never;
1343
1169
  direction?: never;
1344
1170
  duration?: never;
1171
+ connectTime?: never;
1172
+ talkTime?: never;
1173
+ waitTime?: never;
1174
+ queueTime?: never;
1175
+ holdTime?: never;
1345
1176
  service?: never;
1346
1177
  extension?: never;
1347
1178
  chatbot?: never;
@@ -1367,6 +1198,11 @@ export declare namespace AggregationDefinition {
1367
1198
  projection?: never;
1368
1199
  direction?: never;
1369
1200
  duration?: never;
1201
+ connectTime?: never;
1202
+ talkTime?: never;
1203
+ waitTime?: never;
1204
+ queueTime?: never;
1205
+ holdTime?: never;
1370
1206
  service?: never;
1371
1207
  extension?: never;
1372
1208
  chatbot?: never;
@@ -1392,6 +1228,11 @@ export declare namespace AggregationDefinition {
1392
1228
  projection?: never;
1393
1229
  direction?: never;
1394
1230
  duration?: never;
1231
+ connectTime?: never;
1232
+ talkTime?: never;
1233
+ waitTime?: never;
1234
+ queueTime?: never;
1235
+ holdTime?: never;
1395
1236
  service?: never;
1396
1237
  extension?: never;
1397
1238
  chatbot?: never;
@@ -1417,6 +1258,11 @@ export declare namespace AggregationDefinition {
1417
1258
  projection?: never;
1418
1259
  direction?: never;
1419
1260
  duration?: never;
1261
+ connectTime?: never;
1262
+ talkTime?: never;
1263
+ waitTime?: never;
1264
+ queueTime?: never;
1265
+ holdTime?: never;
1420
1266
  service?: never;
1421
1267
  extension?: never;
1422
1268
  chatbot?: never;
@@ -1442,6 +1288,11 @@ export declare namespace AggregationDefinition {
1442
1288
  projection?: never;
1443
1289
  direction?: never;
1444
1290
  duration?: never;
1291
+ connectTime?: never;
1292
+ talkTime?: never;
1293
+ waitTime?: never;
1294
+ queueTime?: never;
1295
+ holdTime?: never;
1445
1296
  service?: never;
1446
1297
  extension?: never;
1447
1298
  chatbot?: never;
@@ -1467,6 +1318,11 @@ export declare namespace AggregationDefinition {
1467
1318
  projection?: never;
1468
1319
  direction?: never;
1469
1320
  duration?: never;
1321
+ connectTime?: never;
1322
+ talkTime?: never;
1323
+ waitTime?: never;
1324
+ queueTime?: never;
1325
+ holdTime?: never;
1470
1326
  service?: never;
1471
1327
  extension?: never;
1472
1328
  chatbot?: never;
@@ -1492,6 +1348,11 @@ export declare namespace AggregationDefinition {
1492
1348
  projection?: never;
1493
1349
  direction?: never;
1494
1350
  duration?: never;
1351
+ connectTime?: never;
1352
+ talkTime?: never;
1353
+ waitTime?: never;
1354
+ queueTime?: never;
1355
+ holdTime?: never;
1495
1356
  service?: never;
1496
1357
  extension?: never;
1497
1358
  chatbot?: never;
@@ -1520,6 +1381,11 @@ export declare namespace AggregationDefinition {
1520
1381
  projection?: never;
1521
1382
  direction?: never;
1522
1383
  duration?: never;
1384
+ connectTime?: never;
1385
+ talkTime?: never;
1386
+ waitTime?: never;
1387
+ queueTime?: never;
1388
+ holdTime?: never;
1523
1389
  service?: never;
1524
1390
  extension?: never;
1525
1391
  chatbot?: never;
@@ -1541,10 +1407,19 @@ export declare namespace AggregationDefinition {
1541
1407
  hourOfDay?: never;
1542
1408
  $unknown: [string, any];
1543
1409
  }
1410
+ /**
1411
+ * @deprecated unused in schema-serde mode.
1412
+ *
1413
+ */
1544
1414
  interface Visitor<T> {
1545
1415
  projection: (value: AggregationProjectionDefinition) => T;
1546
1416
  direction: (value: AggregationNoConfigurationDefinition) => T;
1547
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;
1548
1423
  service: (value: AggregationNoConfigurationDefinition) => T;
1549
1424
  extension: (value: AggregationNoConfigurationDefinition) => T;
1550
1425
  chatbot: (value: AggregationNoConfigurationDefinition) => T;
@@ -1566,7 +1441,6 @@ export declare namespace AggregationDefinition {
1566
1441
  hourOfDay: (value: AggregationHourOfDayDefinition) => T;
1567
1442
  _: (name: string, value: any) => T;
1568
1443
  }
1569
- const visit: <T>(value: AggregationDefinition, visitor: Visitor<T>) => T;
1570
1444
  }
1571
1445
  /**
1572
1446
  * @public
@@ -1841,6 +1715,10 @@ export declare namespace ListConversationsFilterField {
1841
1715
  projection?: never;
1842
1716
  $unknown: [string, any];
1843
1717
  }
1718
+ /**
1719
+ * @deprecated unused in schema-serde mode.
1720
+ *
1721
+ */
1844
1722
  interface Visitor<T> {
1845
1723
  direction: (value: boolean) => T;
1846
1724
  service: (value: boolean) => T;
@@ -1858,7 +1736,6 @@ export declare namespace ListConversationsFilterField {
1858
1736
  projection: (value: ListConversationsFilterProjectionField) => T;
1859
1737
  _: (name: string, value: any) => T;
1860
1738
  }
1861
- const visit: <T>(value: ListConversationsFilterField, visitor: Visitor<T>) => T;
1862
1739
  }
1863
1740
  /**
1864
1741
  * @public
@@ -1868,6 +1745,13 @@ export interface ListConversationsFilterChannel {
1868
1745
  whatsapp?: boolean | undefined;
1869
1746
  kite?: boolean | undefined;
1870
1747
  }
1748
+ /**
1749
+ * @public
1750
+ */
1751
+ export interface ListConversationsFilterNumber {
1752
+ from?: number | undefined;
1753
+ to?: number | undefined;
1754
+ }
1871
1755
  /**
1872
1756
  * @public
1873
1757
  */
@@ -1876,24 +1760,6 @@ export interface ListConversationsFilterAbsoluteDate {
1876
1760
  to?: string | undefined;
1877
1761
  timeZone?: string | undefined;
1878
1762
  }
1879
- /**
1880
- * @public
1881
- * @enum
1882
- */
1883
- export declare const ListConversationsFilterPredefinedDateType: {
1884
- readonly LAST_30_DAYS: "LAST_30_DAYS";
1885
- readonly PREVIOUS_MONTH: "PREVIOUS_MONTH";
1886
- readonly PREVIOUS_WEEK: "PREVIOUS_WEEK";
1887
- readonly THIS_MONTH: "THIS_MONTH";
1888
- readonly THIS_QUARTER: "THIS_QUARTER";
1889
- readonly THIS_WEEK: "THIS_WEEK";
1890
- readonly TODAY: "TODAY";
1891
- readonly YESTERDAY: "YESTERDAY";
1892
- };
1893
- /**
1894
- * @public
1895
- */
1896
- export type ListConversationsFilterPredefinedDateType = typeof ListConversationsFilterPredefinedDateType[keyof typeof ListConversationsFilterPredefinedDateType];
1897
1763
  /**
1898
1764
  * @public
1899
1765
  */
@@ -1927,12 +1793,15 @@ export declare namespace ListConversationsFilterDate {
1927
1793
  predefined?: never;
1928
1794
  $unknown: [string, any];
1929
1795
  }
1796
+ /**
1797
+ * @deprecated unused in schema-serde mode.
1798
+ *
1799
+ */
1930
1800
  interface Visitor<T> {
1931
1801
  absolute: (value: ListConversationsFilterAbsoluteDate) => T;
1932
1802
  predefined: (value: ListConversationsFilterPredefinedDate) => T;
1933
1803
  _: (name: string, value: any) => T;
1934
1804
  }
1935
- const visit: <T>(value: ListConversationsFilterDate, visitor: Visitor<T>) => T;
1936
1805
  }
1937
1806
  /**
1938
1807
  * @public
@@ -1949,13 +1818,6 @@ export interface ListConversationsFilterDirection {
1949
1818
  outbound?: boolean | undefined;
1950
1819
  internal?: boolean | undefined;
1951
1820
  }
1952
- /**
1953
- * @public
1954
- */
1955
- export interface ListConversationsFilterNumber {
1956
- from?: number | undefined;
1957
- to?: number | undefined;
1958
- }
1959
1821
  /**
1960
1822
  * @public
1961
1823
  */
@@ -2018,13 +1880,16 @@ export declare namespace ConversationTarget {
2018
1880
  chat?: never;
2019
1881
  $unknown: [string, any];
2020
1882
  }
1883
+ /**
1884
+ * @deprecated unused in schema-serde mode.
1885
+ *
1886
+ */
2021
1887
  interface Visitor<T> {
2022
1888
  call: (value: CallConversationTarget) => T;
2023
1889
  conference: (value: ConferenceConversationTarget) => T;
2024
1890
  chat: (value: ChatConversationTarget) => T;
2025
1891
  _: (name: string, value: any) => T;
2026
1892
  }
2027
- const visit: <T>(value: ConversationTarget, visitor: Visitor<T>) => T;
2028
1893
  }
2029
1894
  /**
2030
1895
  * @public
@@ -2033,7 +1898,7 @@ export interface ListConversationsFilterInsight {
2033
1898
  projectionId: string;
2034
1899
  fieldId: string;
2035
1900
  match?: string | undefined;
2036
- matchAny?: (string)[] | undefined;
1901
+ matchAny?: string[] | undefined;
2037
1902
  }
2038
1903
  /**
2039
1904
  * @public
@@ -2088,64 +1953,57 @@ export declare namespace ListConversationsFilterParticipant {
2088
1953
  extension?: never;
2089
1954
  $unknown: [string, any];
2090
1955
  }
1956
+ /**
1957
+ * @deprecated unused in schema-serde mode.
1958
+ *
1959
+ */
2091
1960
  interface Visitor<T> {
2092
1961
  email: (value: string) => T;
2093
1962
  phone: (value: string) => T;
2094
1963
  extension: (value: string) => T;
2095
1964
  _: (name: string, value: any) => T;
2096
1965
  }
2097
- const visit: <T>(value: ListConversationsFilterParticipant, visitor: Visitor<T>) => T;
2098
1966
  }
2099
1967
  /**
2100
1968
  * @public
2101
1969
  */
2102
1970
  export interface ListConversationsFilter {
2103
- id?: (ConversationTarget)[] | undefined;
1971
+ id?: ConversationTarget[] | undefined;
2104
1972
  entity?: ListConversationsFilterEntity | undefined;
2105
- participants?: (ListConversationsFilterParticipant)[] | undefined;
2106
- participantsToInclude?: (ListConversationsFilterParticipant)[] | undefined;
2107
- participantsToExclude?: (ListConversationsFilterParticipant)[] | undefined;
2108
- chatbots?: (string)[] | undefined;
2109
- voicebots?: (string)[] | undefined;
2110
- service?: (string)[] | undefined;
2111
- group?: (string)[] | undefined;
2112
- department?: (string)[] | undefined;
2113
- tag?: (string)[] | undefined;
2114
- pbx?: (string)[] | undefined;
2115
- trunk?: (string)[] | undefined;
2116
- queue?: (string)[] | undefined;
2117
- country?: (string)[] | undefined;
2118
- location?: (string)[] | undefined;
2119
- phases?: (string)[] | undefined;
2120
- language?: (string)[] | undefined;
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;
2121
1989
  duration?: ListConversationsFilterNumber | undefined;
1990
+ connectTime?: ListConversationsFilterNumber | undefined;
1991
+ talkTime?: ListConversationsFilterNumber | undefined;
1992
+ waitTime?: ListConversationsFilterNumber | undefined;
1993
+ queueTime?: ListConversationsFilterNumber | undefined;
1994
+ holdTime?: ListConversationsFilterNumber | undefined;
2122
1995
  interaction?: ListConversationsFilterInteraction | undefined;
2123
1996
  recorded?: boolean | undefined;
2124
1997
  transcribed?: boolean | undefined;
2125
1998
  direction?: ListConversationsFilterDirection | undefined;
2126
- insights?: (ListConversationsFilterInsight)[] | undefined;
1999
+ insights?: ListConversationsFilterInsight[] | undefined;
2127
2000
  channel?: ListConversationsFilterChannel | undefined;
2128
2001
  date?: ListConversationsFilterDate | undefined;
2129
2002
  dayOfWeek?: ListConversationsFilterDateIndex | undefined;
2130
2003
  hourOfDay?: ListConversationsFilterDateIndex | undefined;
2131
- present?: (ListConversationsFilterField)[] | undefined;
2132
- absent?: (ListConversationsFilterField)[] | undefined;
2004
+ present?: ListConversationsFilterField[] | undefined;
2005
+ absent?: ListConversationsFilterField[] | undefined;
2133
2006
  }
2134
- /**
2135
- * @public
2136
- * @enum
2137
- */
2138
- export declare const AggregationDateInterval: {
2139
- readonly DAY: "day";
2140
- readonly HOUR: "hour";
2141
- readonly MINUTE: "minute";
2142
- readonly MONTH: "month";
2143
- readonly WEEK: "week";
2144
- };
2145
- /**
2146
- * @public
2147
- */
2148
- export type AggregationDateInterval = typeof AggregationDateInterval[keyof typeof AggregationDateInterval];
2149
2007
  /**
2150
2008
  * @public
2151
2009
  */
@@ -2177,23 +2035,11 @@ export interface ConversationPlaybackState {
2177
2035
  * @public
2178
2036
  */
2179
2037
  export interface ConversationState {
2180
- playlists?: (string)[] | undefined;
2038
+ playlists?: string[] | undefined;
2181
2039
  playback?: ConversationPlaybackState | undefined;
2182
2040
  firstWatchedAt?: string | undefined;
2183
2041
  lastWatchedAt?: string | undefined;
2184
2042
  }
2185
- /**
2186
- * @public
2187
- * @enum
2188
- */
2189
- export declare const DashboardPermission: {
2190
- readonly EDIT: "edit";
2191
- readonly VIEW: "view";
2192
- };
2193
- /**
2194
- * @public
2195
- */
2196
- export type DashboardPermission = typeof DashboardPermission[keyof typeof DashboardPermission];
2197
2043
  /**
2198
2044
  * @public
2199
2045
  */
@@ -2220,12 +2066,15 @@ export declare namespace DashboardPrincipal {
2220
2066
  groupId?: never;
2221
2067
  $unknown: [string, any];
2222
2068
  }
2069
+ /**
2070
+ * @deprecated unused in schema-serde mode.
2071
+ *
2072
+ */
2223
2073
  interface Visitor<T> {
2224
2074
  userId: (value: string) => T;
2225
2075
  groupId: (value: string) => T;
2226
2076
  _: (name: string, value: any) => T;
2227
2077
  }
2228
- const visit: <T>(value: DashboardPrincipal, visitor: Visitor<T>) => T;
2229
2078
  }
2230
2079
  /**
2231
2080
  * @public
@@ -2234,24 +2083,12 @@ export interface DashboardGrant {
2234
2083
  permission: DashboardPermission;
2235
2084
  principal: DashboardPrincipal;
2236
2085
  }
2237
- /**
2238
- * @public
2239
- * @enum
2240
- */
2241
- export declare const DashboardVisibility: {
2242
- readonly EXPLICIT: "explicit";
2243
- readonly ORGANIZATION: "organization";
2244
- };
2245
- /**
2246
- * @public
2247
- */
2248
- export type DashboardVisibility = typeof DashboardVisibility[keyof typeof DashboardVisibility];
2249
2086
  /**
2250
2087
  * @public
2251
2088
  */
2252
2089
  export interface DashboardAccess {
2253
2090
  visibility?: DashboardVisibility | undefined;
2254
- grants?: (DashboardGrant)[] | undefined;
2091
+ grants?: DashboardGrant[] | undefined;
2255
2092
  }
2256
2093
  /**
2257
2094
  * @public
@@ -2277,14 +2114,14 @@ export interface DashboardVisual {
2277
2114
  export interface DashboardSheet {
2278
2115
  id: string;
2279
2116
  name: string;
2280
- visuals: (DashboardVisual)[];
2117
+ visuals: DashboardVisual[];
2281
2118
  filter?: ListConversationsFilter | undefined;
2282
2119
  }
2283
2120
  /**
2284
2121
  * @public
2285
2122
  */
2286
2123
  export interface DashboardDefinition {
2287
- sheets?: (DashboardSheet)[] | undefined;
2124
+ sheets?: DashboardSheet[] | undefined;
2288
2125
  filter?: ListConversationsFilter | undefined;
2289
2126
  }
2290
2127
  /**
@@ -2378,18 +2215,6 @@ export interface ListFiltersItem {
2378
2215
  export interface CreateFilterOutput {
2379
2216
  item: ListFiltersItem;
2380
2217
  }
2381
- /**
2382
- * @public
2383
- * @enum
2384
- */
2385
- export declare const PlaylistPermission: {
2386
- readonly EDIT: "edit";
2387
- readonly VIEW: "view";
2388
- };
2389
- /**
2390
- * @public
2391
- */
2392
- export type PlaylistPermission = typeof PlaylistPermission[keyof typeof PlaylistPermission];
2393
2218
  /**
2394
2219
  * @public
2395
2220
  */
@@ -2416,12 +2241,15 @@ export declare namespace PlaylistPrincipal {
2416
2241
  groupId?: never;
2417
2242
  $unknown: [string, any];
2418
2243
  }
2244
+ /**
2245
+ * @deprecated unused in schema-serde mode.
2246
+ *
2247
+ */
2419
2248
  interface Visitor<T> {
2420
2249
  userId: (value: string) => T;
2421
2250
  groupId: (value: string) => T;
2422
2251
  _: (name: string, value: any) => T;
2423
2252
  }
2424
- const visit: <T>(value: PlaylistPrincipal, visitor: Visitor<T>) => T;
2425
2253
  }
2426
2254
  /**
2427
2255
  * @public
@@ -2430,24 +2258,12 @@ export interface PlaylistGrant {
2430
2258
  permission: PlaylistPermission;
2431
2259
  principal: PlaylistPrincipal;
2432
2260
  }
2433
- /**
2434
- * @public
2435
- * @enum
2436
- */
2437
- export declare const PlaylistVisibility: {
2438
- readonly EXPLICIT: "explicit";
2439
- readonly ORGANIZATION: "organization";
2440
- };
2441
- /**
2442
- * @public
2443
- */
2444
- export type PlaylistVisibility = typeof PlaylistVisibility[keyof typeof PlaylistVisibility];
2445
2261
  /**
2446
2262
  * @public
2447
2263
  */
2448
2264
  export interface PlaylistAccess {
2449
2265
  visibility?: PlaylistVisibility | undefined;
2450
- grants?: (PlaylistGrant)[] | undefined;
2266
+ grants?: PlaylistGrant[] | undefined;
2451
2267
  }
2452
2268
  /**
2453
2269
  * @public
@@ -2491,7 +2307,7 @@ export interface CreatePlaylistOutput {
2491
2307
  * @public
2492
2308
  */
2493
2309
  export interface ProjectionDirectionCondition {
2494
- equals: (CallDirection)[];
2310
+ equals: CallDirection[];
2495
2311
  }
2496
2312
  /**
2497
2313
  * @public
@@ -2500,32 +2316,19 @@ export interface ProjectionDurationCondition {
2500
2316
  minimum: number;
2501
2317
  maximum: number;
2502
2318
  }
2503
- /**
2504
- * @public
2505
- * @enum
2506
- */
2507
- export declare const ProjectionEntityConditionValue: {
2508
- readonly CALL: "call";
2509
- readonly CHAT: "chat";
2510
- readonly CONFERENCE: "conference";
2511
- };
2512
- /**
2513
- * @public
2514
- */
2515
- export type ProjectionEntityConditionValue = typeof ProjectionEntityConditionValue[keyof typeof ProjectionEntityConditionValue];
2516
2319
  /**
2517
2320
  * @public
2518
2321
  */
2519
2322
  export interface ProjectionEntityCondition {
2520
- equals: (ProjectionEntityConditionValue)[];
2323
+ equals: ProjectionEntityConditionValue[];
2521
2324
  }
2522
2325
  /**
2523
2326
  * @public
2524
2327
  */
2525
2328
  export interface ProjectionParticipantsCondition {
2526
- emails?: (string)[] | undefined;
2527
- extensions?: (string)[] | undefined;
2528
- groups?: (string)[] | undefined;
2329
+ emails?: string[] | undefined;
2330
+ extensions?: string[] | undefined;
2331
+ groups?: string[] | undefined;
2529
2332
  }
2530
2333
  /**
2531
2334
  * @public
@@ -2573,6 +2376,10 @@ export declare namespace ProjectionCondition {
2573
2376
  duration?: never;
2574
2377
  $unknown: [string, any];
2575
2378
  }
2379
+ /**
2380
+ * @deprecated unused in schema-serde mode.
2381
+ *
2382
+ */
2576
2383
  interface Visitor<T> {
2577
2384
  entity: (value: ProjectionEntityCondition) => T;
2578
2385
  direction: (value: ProjectionDirectionCondition) => T;
@@ -2580,7 +2387,6 @@ export declare namespace ProjectionCondition {
2580
2387
  duration: (value: ProjectionDurationCondition) => T;
2581
2388
  _: (name: string, value: any) => T;
2582
2389
  }
2583
- const visit: <T>(value: ProjectionCondition, visitor: Visitor<T>) => T;
2584
2390
  }
2585
2391
  /**
2586
2392
  * @public
@@ -2591,14 +2397,14 @@ export interface ProjectionMultilineParameter {
2591
2397
  * @public
2592
2398
  */
2593
2399
  export interface ProjectionSelectionParameter {
2594
- options: (string)[];
2400
+ options: string[];
2595
2401
  multi?: boolean | undefined;
2596
2402
  adaptive?: boolean | undefined;
2597
2403
  /**
2598
2404
  * Options generated by AI when adaptive mode was enabled.
2599
2405
  * @public
2600
2406
  */
2601
- adaptiveOptions?: (string)[] | undefined;
2407
+ adaptiveOptions?: string[] | undefined;
2602
2408
  }
2603
2409
  /**
2604
2410
  * @public
@@ -2640,13 +2446,16 @@ export declare namespace ProjectionParameter {
2640
2446
  selection?: never;
2641
2447
  $unknown: [string, any];
2642
2448
  }
2449
+ /**
2450
+ * @deprecated unused in schema-serde mode.
2451
+ *
2452
+ */
2643
2453
  interface Visitor<T> {
2644
2454
  text: (value: ProjectionTextParameter) => T;
2645
2455
  multiline: (value: ProjectionMultilineParameter) => T;
2646
2456
  selection: (value: ProjectionSelectionParameter) => T;
2647
2457
  _: (name: string, value: any) => T;
2648
2458
  }
2649
- const visit: <T>(value: ProjectionParameter, visitor: Visitor<T>) => T;
2650
2459
  }
2651
2460
  /**
2652
2461
  * @public
@@ -2670,7 +2479,7 @@ export interface CreateProjectionInput {
2670
2479
  /**
2671
2480
  * Compatibility field for legacy clients. Use `category` instead.
2672
2481
  *
2673
- * @deprecated
2482
+ * @deprecated deprecated.
2674
2483
  * @public
2675
2484
  */
2676
2485
  categoryId?: string | undefined;
@@ -2680,10 +2489,10 @@ export interface CreateProjectionInput {
2680
2489
  /**
2681
2490
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
2682
2491
  *
2683
- * @deprecated
2492
+ * @deprecated deprecated.
2684
2493
  * @public
2685
2494
  */
2686
- conditions?: (ProjectionCondition)[] | undefined;
2495
+ conditions?: ProjectionCondition[] | undefined;
2687
2496
  /**
2688
2497
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
2689
2498
  * @public
@@ -2699,7 +2508,7 @@ export interface CreateProjectionInput {
2699
2508
  * @public
2700
2509
  */
2701
2510
  group?: string | undefined;
2702
- fields: (ProjectionField)[];
2511
+ fields: ProjectionField[];
2703
2512
  /**
2704
2513
  * The unique identifier of the tenant when a service token is used.
2705
2514
  * @public
@@ -2718,19 +2527,6 @@ export interface ProjectionMetadata {
2718
2527
  */
2719
2528
  customized?: boolean | undefined;
2720
2529
  }
2721
- /**
2722
- * @public
2723
- * @enum
2724
- */
2725
- export declare const ProjectionStatus: {
2726
- readonly DISABLED: "DISABLED";
2727
- readonly ENABLED: "ENABLED";
2728
- readonly PAUSED: "PAUSED";
2729
- };
2730
- /**
2731
- * @public
2732
- */
2733
- export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionStatus];
2734
2530
  /**
2735
2531
  * @public
2736
2532
  */
@@ -2743,7 +2539,7 @@ export interface Projection {
2743
2539
  /**
2744
2540
  * Compatibility field for legacy clients. Use `category` instead.
2745
2541
  *
2746
- * @deprecated
2542
+ * @deprecated deprecated.
2747
2543
  * @public
2748
2544
  */
2749
2545
  categoryId?: string | undefined;
@@ -2753,10 +2549,10 @@ export interface Projection {
2753
2549
  /**
2754
2550
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
2755
2551
  *
2756
- * @deprecated
2552
+ * @deprecated deprecated.
2757
2553
  * @public
2758
2554
  */
2759
- conditions?: (ProjectionCondition)[] | undefined;
2555
+ conditions?: ProjectionCondition[] | undefined;
2760
2556
  /**
2761
2557
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
2762
2558
  * @public
@@ -2772,7 +2568,7 @@ export interface Projection {
2772
2568
  * @public
2773
2569
  */
2774
2570
  group?: string | undefined;
2775
- fields: (ProjectionField)[];
2571
+ fields: ProjectionField[];
2776
2572
  id: string;
2777
2573
  status: ProjectionStatus;
2778
2574
  version: number;
@@ -2815,7 +2611,7 @@ export interface CreateProjectionsCategoryOutput {
2815
2611
  * @public
2816
2612
  */
2817
2613
  export interface DashboardAccessNotify {
2818
- emails: (string)[];
2614
+ emails: string[];
2819
2615
  message?: string | undefined;
2820
2616
  }
2821
2617
  /**
@@ -2963,17 +2759,6 @@ export interface EnableProjectionInput {
2963
2759
  export interface EnableProjectionOutput {
2964
2760
  projection: Projection;
2965
2761
  }
2966
- /**
2967
- * @public
2968
- */
2969
- export declare class FilterNotFoundException extends __BaseException {
2970
- readonly name: "FilterNotFoundException";
2971
- readonly $fault: "client";
2972
- /**
2973
- * @internal
2974
- */
2975
- constructor(opts: __ExceptionOptionType<FilterNotFoundException, __BaseException>);
2976
- }
2977
2762
  /**
2978
2763
  * @public
2979
2764
  */
@@ -2994,7 +2779,7 @@ export interface FlatAggregationBucket {
2994
2779
  */
2995
2780
  interval?: AggregationDateInterval | undefined;
2996
2781
  /**
2997
- * 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.
2998
2783
  * @public
2999
2784
  */
3000
2785
  filter?: ListConversationsFilter | undefined;
@@ -3008,7 +2793,7 @@ export interface FlatAggregationResult {
3008
2793
  * The list of buckets generated for this insight.
3009
2794
  * @public
3010
2795
  */
3011
- buckets: (FlatAggregationBucket)[];
2796
+ buckets: FlatAggregationBucket[];
3012
2797
  }
3013
2798
  /**
3014
2799
  * @public
@@ -3046,7 +2831,7 @@ export interface InsightsInterruptionsChunk {
3046
2831
  * @public
3047
2832
  */
3048
2833
  export interface InsightsInterruptions {
3049
- chunks?: (InsightsInterruptionsChunk)[] | undefined;
2834
+ chunks?: InsightsInterruptionsChunk[] | undefined;
3050
2835
  }
3051
2836
  /**
3052
2837
  * @public
@@ -3059,7 +2844,7 @@ export interface InsightsNonTalkTimeChunk {
3059
2844
  * @public
3060
2845
  */
3061
2846
  export interface InsightsNonTalkTime {
3062
- chunks?: (InsightsNonTalkTimeChunk)[] | undefined;
2847
+ chunks?: InsightsNonTalkTimeChunk[] | undefined;
3063
2848
  }
3064
2849
  /**
3065
2850
  * @public
@@ -3082,15 +2867,15 @@ export interface InsightsSentimentParticipantScore {
3082
2867
  */
3083
2868
  export interface InsightsSentimentScoreByPeriodChunk {
3084
2869
  score: number;
3085
- participants?: (InsightsSentimentParticipantScore)[] | undefined;
2870
+ participants?: InsightsSentimentParticipantScore[] | undefined;
3086
2871
  }
3087
2872
  /**
3088
2873
  * @public
3089
2874
  */
3090
2875
  export interface InsightsSentiment {
3091
2876
  score?: number | undefined;
3092
- scoreByParticipant?: (InsightsSentimentScoreByParticipantChunk)[] | undefined;
3093
- scoreByPeriod?: (InsightsSentimentScoreByPeriodChunk)[] | undefined;
2877
+ scoreByParticipant?: InsightsSentimentScoreByParticipantChunk[] | undefined;
2878
+ scoreByPeriod?: InsightsSentimentScoreByPeriodChunk[] | undefined;
3094
2879
  }
3095
2880
  /**
3096
2881
  * @public
@@ -3103,7 +2888,7 @@ export interface InsightsTalkSpeedChunk {
3103
2888
  * @public
3104
2889
  */
3105
2890
  export interface InsightsCharacteristicsTalkSpeed {
3106
- detailsByParticipant?: (InsightsTalkSpeedChunk)[] | undefined;
2891
+ detailsByParticipant?: InsightsTalkSpeedChunk[] | undefined;
3107
2892
  }
3108
2893
  /**
3109
2894
  * @public
@@ -3116,7 +2901,7 @@ export interface InsightsTalkTimeChunk {
3116
2901
  * @public
3117
2902
  */
3118
2903
  export interface InsightsTalkTime {
3119
- detailsByParticipant?: (InsightsTalkTimeChunk)[] | undefined;
2904
+ detailsByParticipant?: InsightsTalkTimeChunk[] | undefined;
3120
2905
  }
3121
2906
  /**
3122
2907
  * @public
@@ -3129,22 +2914,6 @@ export interface InsightsCharacteristics {
3129
2914
  talkSpeed?: InsightsCharacteristicsTalkSpeed | undefined;
3130
2915
  talkTime?: InsightsTalkTime | undefined;
3131
2916
  }
3132
- /**
3133
- * @public
3134
- * @enum
3135
- */
3136
- export declare const InsightsStatus: {
3137
- readonly FAILED: "FAILED";
3138
- readonly NONE: "NONE";
3139
- readonly SCHEDULED: "SCHEDULED";
3140
- readonly STARTED: "STARTED";
3141
- readonly SUCCEEDED: "SUCCEEDED";
3142
- readonly UNAVAILABLE: "UNAVAILABLE";
3143
- };
3144
- /**
3145
- * @public
3146
- */
3147
- export type InsightsStatus = typeof InsightsStatus[keyof typeof InsightsStatus];
3148
2917
  /**
3149
2918
  * @public
3150
2919
  */
@@ -3168,19 +2937,6 @@ export interface ProjectionInsightsField {
3168
2937
  name: string;
3169
2938
  value: __DocumentType;
3170
2939
  }
3171
- /**
3172
- * @public
3173
- * @enum
3174
- */
3175
- export declare const InsightsReason: {
3176
- readonly CONDITIONS_NOT_MATCH: "CONDITIONS_NOT_MATCH";
3177
- readonly INTERNAL_ERROR: "INTERNAL_ERROR";
3178
- readonly TRANSCRIPTION_TOO_SMALL: "TRANSCRIPTION_TOO_SMALL";
3179
- };
3180
- /**
3181
- * @public
3182
- */
3183
- export type InsightsReason = typeof InsightsReason[keyof typeof InsightsReason];
3184
2940
  /**
3185
2941
  * @public
3186
2942
  */
@@ -3198,14 +2954,14 @@ export interface ProjectionInsights {
3198
2954
  * @public
3199
2955
  */
3200
2956
  reason?: InsightsReason | undefined;
3201
- fields: (ProjectionInsightsField)[];
2957
+ fields: ProjectionInsightsField[];
3202
2958
  }
3203
2959
  /**
3204
2960
  * @public
3205
2961
  */
3206
2962
  export interface GetCallInsightsOutput {
3207
2963
  status: InsightsStatus;
3208
- insights?: (ProjectionInsights)[] | undefined;
2964
+ insights?: ProjectionInsights[] | undefined;
3209
2965
  }
3210
2966
  /**
3211
2967
  * @public
@@ -3247,22 +3003,22 @@ export interface TranscriptionSummaryCsat {
3247
3003
  export interface TranscriptionSummaryJson {
3248
3004
  callBriefVeryShortTitle?: string | undefined;
3249
3005
  callBrief?: string | undefined;
3250
- customerInsights?: (string)[] | undefined;
3251
- keyPoints?: (string)[] | undefined;
3252
- competitiveInformation?: (string)[] | undefined;
3253
- implementationTimeline?: (string)[] | undefined;
3254
- budget?: (string)[] | undefined;
3255
- customerResponse?: (string)[] | undefined;
3256
- salesProposals?: (string)[] | undefined;
3257
- actionItems?: (string)[] | undefined;
3258
- nextSteps?: (string)[] | undefined;
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;
3259
3015
  csat?: TranscriptionSummaryCsat | undefined;
3260
- topics?: (string)[] | undefined;
3261
- review?: (string)[] | undefined;
3262
- progress?: (string)[] | undefined;
3263
- issues?: (string)[] | undefined;
3264
- decisions?: (string)[] | undefined;
3265
- tags?: (string)[] | undefined;
3016
+ topics?: string[] | undefined;
3017
+ review?: string[] | undefined;
3018
+ progress?: string[] | undefined;
3019
+ issues?: string[] | undefined;
3020
+ decisions?: string[] | undefined;
3021
+ tags?: string[] | undefined;
3266
3022
  }
3267
3023
  /**
3268
3024
  * @public
@@ -3291,7 +3047,7 @@ export interface GetChatInsightsInput {
3291
3047
  */
3292
3048
  export interface GetChatInsightsOutput {
3293
3049
  status: InsightsStatus;
3294
- insights?: (ProjectionInsights)[] | undefined;
3050
+ insights?: ProjectionInsights[] | undefined;
3295
3051
  }
3296
3052
  /**
3297
3053
  * @public
@@ -3337,24 +3093,7 @@ export interface GetConferenceInsightsInput {
3337
3093
  */
3338
3094
  export interface GetConferenceInsightsOutput {
3339
3095
  status: InsightsStatus;
3340
- insights?: (ProjectionInsights)[] | undefined;
3341
- }
3342
- /**
3343
- * @public
3344
- * @enum
3345
- */
3346
- export declare const ConversationFileCategory: {
3347
- readonly GENERAL: "channels";
3348
- readonly RECORDING: "recordings";
3349
- readonly WIZY_RECORDING: "wizyconfRecordings";
3350
- };
3351
- /**
3352
- * @public
3353
- */
3354
- export type ConversationFileCategory = typeof ConversationFileCategory[keyof typeof ConversationFileCategory];
3355
- export declare enum DownloadStrategy {
3356
- DEFAULT = 0,
3357
- DOWNLOAD = 1
3096
+ insights?: ProjectionInsights[] | undefined;
3358
3097
  }
3359
3098
  /**
3360
3099
  * @public
@@ -3387,17 +3126,6 @@ export interface GetConferenceRecordingPresignedDownloadUrlOutput {
3387
3126
  */
3388
3127
  presignedDownloadUrl: string;
3389
3128
  }
3390
- /**
3391
- * @public
3392
- */
3393
- export declare class FileNotFoundException extends __BaseException {
3394
- readonly name: "FileNotFoundException";
3395
- readonly $fault: "client";
3396
- /**
3397
- * @internal
3398
- */
3399
- constructor(opts: __ExceptionOptionType<FileNotFoundException, __BaseException>);
3400
- }
3401
3129
  /**
3402
3130
  * @public
3403
3131
  */
@@ -3449,13 +3177,13 @@ export interface ConferenceTimeFramesChunk {
3449
3177
  */
3450
3178
  export interface ConferenceTimeFramesListItem {
3451
3179
  jid: string;
3452
- frames: (ConferenceTimeFramesChunk)[];
3180
+ frames: ConferenceTimeFramesChunk[];
3453
3181
  }
3454
3182
  /**
3455
3183
  * @public
3456
3184
  */
3457
3185
  export interface GetConferenceTimeFramesOutput {
3458
- timeFrames?: (ConferenceTimeFramesListItem)[] | undefined;
3186
+ timeFrames?: ConferenceTimeFramesListItem[] | undefined;
3459
3187
  }
3460
3188
  /**
3461
3189
  * @public
@@ -3519,6 +3247,7 @@ export interface GetProjectionOutput {
3519
3247
  projection: Projection;
3520
3248
  }
3521
3249
  /**
3250
+ * @deprecated deprecated.
3522
3251
  * @public
3523
3252
  */
3524
3253
  export interface InsightsBucket {
@@ -3533,12 +3262,13 @@ export interface InsightsBucket {
3533
3262
  */
3534
3263
  count: number;
3535
3264
  /**
3536
- * 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.
3537
3266
  * @public
3538
3267
  */
3539
3268
  filter?: ListConversationsFilter | undefined;
3540
3269
  }
3541
3270
  /**
3271
+ * @deprecated deprecated.
3542
3272
  * @public
3543
3273
  */
3544
3274
  export interface InsightResult {
@@ -3546,10 +3276,10 @@ export interface InsightResult {
3546
3276
  /**
3547
3277
  * The list of buckets generated for this insight.
3548
3278
  *
3549
- * @deprecated
3279
+ * @deprecated deprecated.
3550
3280
  * @public
3551
3281
  */
3552
- buckets: (InsightsBucket)[];
3282
+ buckets: InsightsBucket[];
3553
3283
  }
3554
3284
  /**
3555
3285
  * @public
@@ -3598,13 +3328,16 @@ export declare namespace ListConversationsItemEvent {
3598
3328
  chat?: never;
3599
3329
  $unknown: [string, any];
3600
3330
  }
3331
+ /**
3332
+ * @deprecated unused in schema-serde mode.
3333
+ *
3334
+ */
3601
3335
  interface Visitor<T> {
3602
3336
  call: (value: CallRecord) => T;
3603
3337
  conference: (value: ConferenceRecord) => T;
3604
3338
  chat: (value: ChatRecord) => T;
3605
3339
  _: (name: string, value: any) => T;
3606
3340
  }
3607
- const visit: <T>(value: ListConversationsItemEvent, visitor: Visitor<T>) => T;
3608
3341
  }
3609
3342
  /**
3610
3343
  * @public
@@ -3626,7 +3359,7 @@ export interface ListConversationsItemHighlightTranscriptionItem {
3626
3359
  * @public
3627
3360
  */
3628
3361
  export interface ListConversationsItemHighlight {
3629
- transcription?: (ListConversationsItemHighlightTranscriptionItem)[] | undefined;
3362
+ transcription?: ListConversationsItemHighlightTranscriptionItem[] | undefined;
3630
3363
  summary?: ListConversationsItemHighlightSummary | undefined;
3631
3364
  subject?: string | undefined;
3632
3365
  }
@@ -3679,7 +3412,7 @@ export interface ListConversationsItemSummary {
3679
3412
  status: InsightsStatus;
3680
3413
  title?: string | undefined;
3681
3414
  brief?: string | undefined;
3682
- insights?: (ListConversationsItemInsight)[] | undefined;
3415
+ insights?: ListConversationsItemInsight[] | undefined;
3683
3416
  language?: string | undefined;
3684
3417
  }
3685
3418
  /**
@@ -3695,7 +3428,7 @@ export interface ListConversationsItem {
3695
3428
  * @public
3696
3429
  */
3697
3430
  export interface ListConversationsOutput {
3698
- items: (ListConversationsItem)[];
3431
+ items: ListConversationsItem[];
3699
3432
  /**
3700
3433
  * A temporary parameter which would be removed in next updates.
3701
3434
  * @public
@@ -3708,10 +3441,10 @@ export interface ListConversationsOutput {
3708
3441
  export interface ListConversationsAggregationsInput {
3709
3442
  company?: string | undefined;
3710
3443
  /**
3711
- * 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.
3712
3445
  * @public
3713
3446
  */
3714
- insights?: (AggregationDefinition)[] | undefined;
3447
+ insights?: AggregationDefinition[] | undefined;
3715
3448
  filter?: ListConversationsFilter | undefined;
3716
3449
  }
3717
3450
  /**
@@ -3727,7 +3460,7 @@ export interface ListConversationsAggregationsOutput {
3727
3460
  * Top-level distribution buckets as per the first grouping. Each bucket can contain nested child buckets for subsequent groupings.
3728
3461
  * @public
3729
3462
  */
3730
- result?: (FlatAggregationResult)[] | undefined;
3463
+ result?: FlatAggregationResult[] | undefined;
3731
3464
  }
3732
3465
  /**
3733
3466
  * @public
@@ -3735,10 +3468,10 @@ export interface ListConversationsAggregationsOutput {
3735
3468
  export interface ListConversationsInsightsInput {
3736
3469
  company?: string | undefined;
3737
3470
  /**
3738
- * 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.
3739
3472
  * @public
3740
3473
  */
3741
- insights?: (AggregationDefinition)[] | undefined;
3474
+ insights?: AggregationDefinition[] | undefined;
3742
3475
  filter?: ListConversationsFilter | undefined;
3743
3476
  }
3744
3477
  /**
@@ -3753,17 +3486,17 @@ export interface ListConversationsInsightsOutput {
3753
3486
  /**
3754
3487
  * Top-level distribution buckets as per the first grouping. Each bucket can contain nested child buckets for subsequent groupings.
3755
3488
  *
3756
- * @deprecated
3489
+ * @deprecated deprecated.
3757
3490
  * @public
3758
3491
  */
3759
- result?: (InsightResult)[] | undefined;
3492
+ result?: InsightResult[] | undefined;
3760
3493
  }
3761
3494
  /**
3762
3495
  * @public
3763
3496
  */
3764
3497
  export interface ListConversationsInsightsAggregationsInput {
3765
3498
  company?: string | undefined;
3766
- aggregations: (AggregationDefinition)[];
3499
+ aggregations: AggregationDefinition[];
3767
3500
  filter?: ListConversationsFilter | undefined;
3768
3501
  }
3769
3502
  /**
@@ -3771,7 +3504,7 @@ export interface ListConversationsInsightsAggregationsInput {
3771
3504
  */
3772
3505
  export interface ListConversationsNestedAggregationsInput {
3773
3506
  company?: string | undefined;
3774
- aggregations: (AggregationDefinition)[];
3507
+ aggregations: AggregationDefinition[];
3775
3508
  filter?: ListConversationsFilter | undefined;
3776
3509
  }
3777
3510
  /**
@@ -3793,7 +3526,7 @@ export interface ListDashboardsInput {
3793
3526
  * @public
3794
3527
  */
3795
3528
  export interface ListDashboardsOutput {
3796
- dashboards: (Dashboard)[];
3529
+ dashboards: Dashboard[];
3797
3530
  }
3798
3531
  /**
3799
3532
  * @public
@@ -3814,7 +3547,7 @@ export interface ListFiltersInput {
3814
3547
  * @public
3815
3548
  */
3816
3549
  export interface ListFiltersOutput {
3817
- filters: (ListFiltersItem)[];
3550
+ filters: ListFiltersItem[];
3818
3551
  }
3819
3552
  /**
3820
3553
  * @public
@@ -3835,8 +3568,8 @@ export interface ListPinnedDashboardsInput {
3835
3568
  * @public
3836
3569
  */
3837
3570
  export interface ListPinnedDashboardsOutput {
3838
- pinnedDashboardsIds: (string)[];
3839
- pinnedDashboards: (Dashboard)[];
3571
+ pinnedDashboardsIds: string[];
3572
+ pinnedDashboards: Dashboard[];
3840
3573
  }
3841
3574
  /**
3842
3575
  * @public
@@ -3855,19 +3588,6 @@ export interface ListPlaylistItemsInput {
3855
3588
  playlistId: string;
3856
3589
  exclusiveStartKey?: string | undefined;
3857
3590
  }
3858
- /**
3859
- * @public
3860
- * @enum
3861
- */
3862
- export declare const PlaylistItemStatus: {
3863
- readonly AVAILABLE: "AVAILABLE";
3864
- readonly NO_ACCESS: "NO_ACCESS";
3865
- readonly UNAVAILABLE: "UNAVAILABLE";
3866
- };
3867
- /**
3868
- * @public
3869
- */
3870
- export type PlaylistItemStatus = typeof PlaylistItemStatus[keyof typeof PlaylistItemStatus];
3871
3591
  /**
3872
3592
  * @public
3873
3593
  */
@@ -3884,7 +3604,7 @@ export interface PlaylistItem {
3884
3604
  * @public
3885
3605
  */
3886
3606
  export interface ListPlaylistItemsOutput {
3887
- items: (PlaylistItem)[];
3607
+ items: PlaylistItem[];
3888
3608
  lastEvaluatedKey?: string | undefined;
3889
3609
  }
3890
3610
  /**
@@ -3906,7 +3626,7 @@ export interface ListPlaylistsInput {
3906
3626
  * @public
3907
3627
  */
3908
3628
  export interface ListPlaylistsOutput {
3909
- playlists: (Playlist)[];
3629
+ playlists: Playlist[];
3910
3630
  }
3911
3631
  /**
3912
3632
  * @public
@@ -3922,12 +3642,12 @@ export interface ListProjectionsInput {
3922
3642
  * @public
3923
3643
  */
3924
3644
  export interface ListProjectionsOutput {
3925
- projections: (Projection)[];
3645
+ projections: Projection[];
3926
3646
  /**
3927
3647
  * Compatibility field for legacy clients. Categories are simulated from projection `category`/`categoryId` values.
3928
3648
  * @public
3929
3649
  */
3930
- categories?: (ProjectionsCategory)[] | undefined;
3650
+ categories?: ProjectionsCategory[] | undefined;
3931
3651
  }
3932
3652
  /**
3933
3653
  * @public
@@ -3958,8 +3678,8 @@ export interface WatchItem {
3958
3678
  * @public
3959
3679
  */
3960
3680
  export interface ListWatchHistoryOutput {
3961
- items: (ListConversationsItem)[];
3962
- itemsState: (WatchItem)[];
3681
+ items: ListConversationsItem[];
3682
+ itemsState: WatchItem[];
3963
3683
  lastEvaluatedKey?: string | undefined;
3964
3684
  }
3965
3685
  /**
@@ -3983,7 +3703,7 @@ export interface PauseProjectionOutput {
3983
3703
  * @public
3984
3704
  */
3985
3705
  export interface PlaylistAccessNotify {
3986
- emails: (string)[];
3706
+ emails: string[];
3987
3707
  message?: string | undefined;
3988
3708
  }
3989
3709
  /**
@@ -4171,7 +3891,7 @@ export interface UpdatePinnedDashboardsInput {
4171
3891
  * @public
4172
3892
  */
4173
3893
  user?: string | undefined;
4174
- pinned: (string)[];
3894
+ pinned: string[];
4175
3895
  }
4176
3896
  /**
4177
3897
  * @public
@@ -4238,7 +3958,7 @@ export interface UpdateProjectionInput {
4238
3958
  /**
4239
3959
  * Compatibility field for legacy clients. Use `category` instead.
4240
3960
  *
4241
- * @deprecated
3961
+ * @deprecated deprecated.
4242
3962
  * @public
4243
3963
  */
4244
3964
  categoryId?: string | undefined;
@@ -4248,10 +3968,10 @@ export interface UpdateProjectionInput {
4248
3968
  /**
4249
3969
  * Deprecated in favor to filter options. Conditions is automatically converted to the filter.
4250
3970
  *
4251
- * @deprecated
3971
+ * @deprecated deprecated.
4252
3972
  * @public
4253
3973
  */
4254
- conditions?: (ProjectionCondition)[] | undefined;
3974
+ conditions?: ProjectionCondition[] | undefined;
4255
3975
  /**
4256
3976
  * A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
4257
3977
  * @public
@@ -4267,7 +3987,7 @@ export interface UpdateProjectionInput {
4267
3987
  * @public
4268
3988
  */
4269
3989
  group?: string | undefined;
4270
- fields: (ProjectionField)[];
3990
+ fields: ProjectionField[];
4271
3991
  /**
4272
3992
  * The unique identifier of the tenant when a service token is used.
4273
3993
  * @public
@@ -4341,7 +4061,7 @@ export interface AggregationBucket {
4341
4061
  */
4342
4062
  interval?: AggregationDateInterval | undefined;
4343
4063
  /**
4344
- * 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.
4345
4065
  * @public
4346
4066
  */
4347
4067
  filter?: ListConversationsFilter | undefined;
@@ -4364,7 +4084,7 @@ export interface AggregationResult {
4364
4084
  * The list of buckets generated for this aggregation level.
4365
4085
  * @public
4366
4086
  */
4367
- buckets: (AggregationBucket)[];
4087
+ buckets: AggregationBucket[];
4368
4088
  }
4369
4089
  /**
4370
4090
  * @public