@wildix/wda-insights-client 1.1.46 → 1.1.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (231) hide show
  1. package/dist-cjs/WdaInsights.js +3 -3
  2. package/dist-cjs/WdaInsightsClient.js +34 -26
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/CreateDashboardCommand.js +10 -11
  6. package/dist-cjs/commands/CreateFilterCommand.js +10 -11
  7. package/dist-cjs/commands/CreatePlaylistCommand.js +10 -11
  8. package/dist-cjs/commands/CreateProjectionCommand.js +10 -11
  9. package/dist-cjs/commands/CreateProjectionsCategoryCommand.js +10 -11
  10. package/dist-cjs/commands/DeleteDashboardCommand.js +10 -11
  11. package/dist-cjs/commands/DeleteFilterCommand.js +10 -11
  12. package/dist-cjs/commands/DeletePlaylistCommand.js +10 -11
  13. package/dist-cjs/commands/DeletePlaylistItemCommand.js +10 -11
  14. package/dist-cjs/commands/DeleteProjectionCommand.js +10 -11
  15. package/dist-cjs/commands/DeleteProjectionsCategoryCommand.js +10 -11
  16. package/dist-cjs/commands/DisableProjectionCommand.js +10 -11
  17. package/dist-cjs/commands/EnableProjectionCommand.js +10 -11
  18. package/dist-cjs/commands/GetAnalysisSettingsCommand.js +10 -11
  19. package/dist-cjs/commands/GetCallCharacteristicsCommand.js +10 -11
  20. package/dist-cjs/commands/GetCallInsightsCommand.js +10 -11
  21. package/dist-cjs/commands/GetCallStateCommand.js +10 -11
  22. package/dist-cjs/commands/GetCallSummaryCommand.js +10 -11
  23. package/dist-cjs/commands/GetChatInsightsCommand.js +10 -11
  24. package/dist-cjs/commands/GetChatStateCommand.js +10 -11
  25. package/dist-cjs/commands/GetChatSummaryCommand.js +10 -11
  26. package/dist-cjs/commands/GetConferenceInsightsCommand.js +10 -11
  27. package/dist-cjs/commands/GetConferenceRecordingPresignedDownloadUrlCommand.js +10 -11
  28. package/dist-cjs/commands/GetConferenceStateCommand.js +10 -11
  29. package/dist-cjs/commands/GetConferenceSummaryCommand.js +10 -11
  30. package/dist-cjs/commands/GetConferenceTimeFramesCommand.js +10 -11
  31. package/dist-cjs/commands/GetDashboardCommand.js +10 -11
  32. package/dist-cjs/commands/GetPlaylistCommand.js +10 -11
  33. package/dist-cjs/commands/GetProjectionCommand.js +10 -11
  34. package/dist-cjs/commands/ListConversationsAggregationsCommand.js +10 -11
  35. package/dist-cjs/commands/ListConversationsCommand.js +10 -11
  36. package/dist-cjs/commands/ListConversationsInsightsAggregationsCommand.js +10 -11
  37. package/dist-cjs/commands/ListConversationsInsightsCommand.js +10 -11
  38. package/dist-cjs/commands/ListConversationsNestedAggregationsCommand.js +10 -11
  39. package/dist-cjs/commands/ListDashboardsCommand.js +10 -11
  40. package/dist-cjs/commands/ListFiltersCommand.js +10 -11
  41. package/dist-cjs/commands/ListPinnedDashboardsCommand.js +10 -11
  42. package/dist-cjs/commands/ListPlaylistItemsCommand.js +10 -11
  43. package/dist-cjs/commands/ListPlaylistsCommand.js +10 -11
  44. package/dist-cjs/commands/ListProjectionsCommand.js +10 -11
  45. package/dist-cjs/commands/ListWatchHistoryCommand.js +10 -11
  46. package/dist-cjs/commands/PauseProjectionCommand.js +10 -11
  47. package/dist-cjs/commands/PutAnalysisSettingsCommand.js +10 -11
  48. package/dist-cjs/commands/PutPlaylistItemCommand.js +10 -11
  49. package/dist-cjs/commands/QueryConversationsCountCommand.js +10 -11
  50. package/dist-cjs/commands/ScheduleCallSummaryGenerationCommand.js +10 -11
  51. package/dist-cjs/commands/ScheduleConferenceSummaryGenerationCommand.js +10 -11
  52. package/dist-cjs/commands/UpdateDashboardAccessCommand.js +10 -11
  53. package/dist-cjs/commands/UpdateDashboardCommand.js +10 -11
  54. package/dist-cjs/commands/UpdateFilterCommand.js +10 -11
  55. package/dist-cjs/commands/UpdatePinnedDashboardsCommand.js +10 -11
  56. package/dist-cjs/commands/UpdatePlaylistAccessCommand.js +10 -11
  57. package/dist-cjs/commands/UpdatePlaylistCommand.js +10 -11
  58. package/dist-cjs/commands/UpdateProjectionCommand.js +10 -11
  59. package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +10 -11
  60. package/dist-cjs/commands/WatchCommand.js +10 -11
  61. package/dist-cjs/commands/index.js +4 -4
  62. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  63. package/dist-cjs/endpoint/bdd.js +28 -0
  64. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  65. package/dist-cjs/index.js +4 -1
  66. package/dist-cjs/models/WdaInsightsServiceException.js +3 -3
  67. package/dist-cjs/models/enums.js +225 -0
  68. package/dist-cjs/models/errors.js +69 -0
  69. package/dist-cjs/models/models_0.js +0 -478
  70. package/dist-cjs/runtimeConfig.browser.js +11 -11
  71. package/dist-cjs/runtimeConfig.js +22 -18
  72. package/dist-cjs/runtimeConfig.shared.js +30 -10
  73. package/dist-cjs/runtimeExtensions.js +6 -5
  74. package/dist-cjs/schemas/schemas_0.js +2178 -0
  75. package/dist-es/WdaInsights.js +3 -3
  76. package/dist-es/WdaInsightsClient.js +30 -22
  77. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  78. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  79. package/dist-es/commands/CreateDashboardCommand.js +9 -10
  80. package/dist-es/commands/CreateFilterCommand.js +9 -10
  81. package/dist-es/commands/CreatePlaylistCommand.js +9 -10
  82. package/dist-es/commands/CreateProjectionCommand.js +9 -10
  83. package/dist-es/commands/CreateProjectionsCategoryCommand.js +9 -10
  84. package/dist-es/commands/DeleteDashboardCommand.js +9 -10
  85. package/dist-es/commands/DeleteFilterCommand.js +9 -10
  86. package/dist-es/commands/DeletePlaylistCommand.js +9 -10
  87. package/dist-es/commands/DeletePlaylistItemCommand.js +9 -10
  88. package/dist-es/commands/DeleteProjectionCommand.js +9 -10
  89. package/dist-es/commands/DeleteProjectionsCategoryCommand.js +9 -10
  90. package/dist-es/commands/DisableProjectionCommand.js +9 -10
  91. package/dist-es/commands/EnableProjectionCommand.js +9 -10
  92. package/dist-es/commands/GetAnalysisSettingsCommand.js +9 -10
  93. package/dist-es/commands/GetCallCharacteristicsCommand.js +9 -10
  94. package/dist-es/commands/GetCallInsightsCommand.js +9 -10
  95. package/dist-es/commands/GetCallStateCommand.js +9 -10
  96. package/dist-es/commands/GetCallSummaryCommand.js +9 -10
  97. package/dist-es/commands/GetChatInsightsCommand.js +9 -10
  98. package/dist-es/commands/GetChatStateCommand.js +9 -10
  99. package/dist-es/commands/GetChatSummaryCommand.js +9 -10
  100. package/dist-es/commands/GetConferenceInsightsCommand.js +9 -10
  101. package/dist-es/commands/GetConferenceRecordingPresignedDownloadUrlCommand.js +9 -10
  102. package/dist-es/commands/GetConferenceStateCommand.js +9 -10
  103. package/dist-es/commands/GetConferenceSummaryCommand.js +9 -10
  104. package/dist-es/commands/GetConferenceTimeFramesCommand.js +9 -10
  105. package/dist-es/commands/GetDashboardCommand.js +9 -10
  106. package/dist-es/commands/GetPlaylistCommand.js +9 -10
  107. package/dist-es/commands/GetProjectionCommand.js +9 -10
  108. package/dist-es/commands/ListConversationsAggregationsCommand.js +9 -10
  109. package/dist-es/commands/ListConversationsCommand.js +9 -10
  110. package/dist-es/commands/ListConversationsInsightsAggregationsCommand.js +9 -10
  111. package/dist-es/commands/ListConversationsInsightsCommand.js +9 -10
  112. package/dist-es/commands/ListConversationsNestedAggregationsCommand.js +9 -10
  113. package/dist-es/commands/ListDashboardsCommand.js +9 -10
  114. package/dist-es/commands/ListFiltersCommand.js +9 -10
  115. package/dist-es/commands/ListPinnedDashboardsCommand.js +9 -10
  116. package/dist-es/commands/ListPlaylistItemsCommand.js +9 -10
  117. package/dist-es/commands/ListPlaylistsCommand.js +9 -10
  118. package/dist-es/commands/ListProjectionsCommand.js +9 -10
  119. package/dist-es/commands/ListWatchHistoryCommand.js +9 -10
  120. package/dist-es/commands/PauseProjectionCommand.js +9 -10
  121. package/dist-es/commands/PutAnalysisSettingsCommand.js +9 -10
  122. package/dist-es/commands/PutPlaylistItemCommand.js +9 -10
  123. package/dist-es/commands/QueryConversationsCountCommand.js +9 -10
  124. package/dist-es/commands/ScheduleCallSummaryGenerationCommand.js +9 -10
  125. package/dist-es/commands/ScheduleConferenceSummaryGenerationCommand.js +9 -10
  126. package/dist-es/commands/UpdateDashboardAccessCommand.js +9 -10
  127. package/dist-es/commands/UpdateDashboardCommand.js +9 -10
  128. package/dist-es/commands/UpdateFilterCommand.js +9 -10
  129. package/dist-es/commands/UpdatePinnedDashboardsCommand.js +9 -10
  130. package/dist-es/commands/UpdatePlaylistAccessCommand.js +9 -10
  131. package/dist-es/commands/UpdatePlaylistCommand.js +9 -10
  132. package/dist-es/commands/UpdateProjectionCommand.js +9 -10
  133. package/dist-es/commands/UpdateProjectionsCategoryCommand.js +9 -10
  134. package/dist-es/commands/WatchCommand.js +9 -10
  135. package/dist-es/commands/index.js +4 -4
  136. package/dist-es/endpoint/EndpointParameters.js +12 -0
  137. package/dist-es/endpoint/bdd.js +25 -0
  138. package/dist-es/endpoint/endpointResolver.js +12 -0
  139. package/dist-es/index.js +4 -1
  140. package/dist-es/models/WdaInsightsServiceException.js +1 -1
  141. package/dist-es/models/enums.js +222 -0
  142. package/dist-es/models/errors.js +61 -0
  143. package/dist-es/models/models_0.js +1 -471
  144. package/dist-es/runtimeConfig.browser.js +7 -7
  145. package/dist-es/runtimeConfig.js +17 -13
  146. package/dist-es/runtimeConfig.shared.js +24 -4
  147. package/dist-es/runtimeExtensions.js +6 -5
  148. package/dist-es/schemas/schemas_0.js +2170 -0
  149. package/dist-types/WdaInsights.d.ts +57 -57
  150. package/dist-types/WdaInsightsClient.d.ts +86 -68
  151. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  152. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  153. package/dist-types/commands/CreateDashboardCommand.d.ts +61 -39
  154. package/dist-types/commands/CreateFilterCommand.d.ts +9 -7
  155. package/dist-types/commands/CreatePlaylistCommand.d.ts +9 -7
  156. package/dist-types/commands/CreateProjectionCommand.d.ts +51 -39
  157. package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +10 -8
  158. package/dist-types/commands/DeleteDashboardCommand.d.ts +9 -7
  159. package/dist-types/commands/DeleteFilterCommand.d.ts +9 -7
  160. package/dist-types/commands/DeletePlaylistCommand.d.ts +9 -7
  161. package/dist-types/commands/DeletePlaylistItemCommand.d.ts +9 -7
  162. package/dist-types/commands/DeleteProjectionCommand.d.ts +9 -7
  163. package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +10 -8
  164. package/dist-types/commands/DisableProjectionCommand.d.ts +30 -23
  165. package/dist-types/commands/EnableProjectionCommand.d.ts +30 -23
  166. package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +30 -23
  167. package/dist-types/commands/GetCallCharacteristicsCommand.d.ts +9 -7
  168. package/dist-types/commands/GetCallInsightsCommand.d.ts +9 -7
  169. package/dist-types/commands/GetCallStateCommand.d.ts +9 -7
  170. package/dist-types/commands/GetCallSummaryCommand.d.ts +9 -7
  171. package/dist-types/commands/GetChatInsightsCommand.d.ts +9 -7
  172. package/dist-types/commands/GetChatStateCommand.d.ts +9 -7
  173. package/dist-types/commands/GetChatSummaryCommand.d.ts +9 -7
  174. package/dist-types/commands/GetConferenceInsightsCommand.d.ts +9 -7
  175. package/dist-types/commands/GetConferenceRecordingPresignedDownloadUrlCommand.d.ts +9 -7
  176. package/dist-types/commands/GetConferenceStateCommand.d.ts +9 -7
  177. package/dist-types/commands/GetConferenceSummaryCommand.d.ts +9 -7
  178. package/dist-types/commands/GetConferenceTimeFramesCommand.d.ts +9 -7
  179. package/dist-types/commands/GetDashboardCommand.d.ts +35 -23
  180. package/dist-types/commands/GetPlaylistCommand.d.ts +9 -7
  181. package/dist-types/commands/GetProjectionCommand.d.ts +30 -23
  182. package/dist-types/commands/ListConversationsAggregationsCommand.d.ts +125 -39
  183. package/dist-types/commands/ListConversationsCommand.d.ts +30 -23
  184. package/dist-types/commands/ListConversationsInsightsAggregationsCommand.d.ts +137 -49
  185. package/dist-types/commands/ListConversationsInsightsCommand.d.ts +126 -40
  186. package/dist-types/commands/ListConversationsNestedAggregationsCommand.d.ts +136 -48
  187. package/dist-types/commands/ListDashboardsCommand.d.ts +35 -23
  188. package/dist-types/commands/ListFiltersCommand.d.ts +9 -7
  189. package/dist-types/commands/ListPinnedDashboardsCommand.d.ts +35 -23
  190. package/dist-types/commands/ListPlaylistItemsCommand.d.ts +9 -7
  191. package/dist-types/commands/ListPlaylistsCommand.d.ts +9 -7
  192. package/dist-types/commands/ListProjectionsCommand.d.ts +30 -23
  193. package/dist-types/commands/ListWatchHistoryCommand.d.ts +9 -7
  194. package/dist-types/commands/PauseProjectionCommand.d.ts +30 -23
  195. package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +51 -39
  196. package/dist-types/commands/PutPlaylistItemCommand.d.ts +9 -7
  197. package/dist-types/commands/QueryConversationsCountCommand.d.ts +30 -23
  198. package/dist-types/commands/ScheduleCallSummaryGenerationCommand.d.ts +10 -8
  199. package/dist-types/commands/ScheduleConferenceSummaryGenerationCommand.d.ts +10 -8
  200. package/dist-types/commands/UpdateDashboardAccessCommand.d.ts +35 -23
  201. package/dist-types/commands/UpdateDashboardCommand.d.ts +61 -39
  202. package/dist-types/commands/UpdateFilterCommand.d.ts +9 -7
  203. package/dist-types/commands/UpdatePinnedDashboardsCommand.d.ts +9 -7
  204. package/dist-types/commands/UpdatePlaylistAccessCommand.d.ts +9 -7
  205. package/dist-types/commands/UpdatePlaylistCommand.d.ts +9 -7
  206. package/dist-types/commands/UpdateProjectionCommand.d.ts +51 -39
  207. package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +10 -8
  208. package/dist-types/commands/WatchCommand.d.ts +9 -7
  209. package/dist-types/commands/index.d.ts +4 -4
  210. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  211. package/dist-types/endpoint/bdd.d.ts +2 -0
  212. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  213. package/dist-types/extensionConfiguration.d.ts +4 -3
  214. package/dist-types/index.d.ts +5 -1
  215. package/dist-types/models/WdaInsightsServiceException.d.ts +1 -1
  216. package/dist-types/models/enums.d.ts +541 -0
  217. package/dist-types/models/errors.d.ts +57 -0
  218. package/dist-types/models/models_0.d.ts +473 -760
  219. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  220. package/dist-types/runtimeConfig.d.ts +34 -15
  221. package/dist-types/runtimeConfig.native.d.ts +36 -17
  222. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  223. package/dist-types/runtimeExtensions.d.ts +1 -1
  224. package/dist-types/schemas/schemas_0.d.ts +299 -0
  225. package/package.json +14 -40
  226. package/dist-cjs/models/index.js +0 -4
  227. package/dist-cjs/protocols/Aws_restJson1.js +0 -2406
  228. package/dist-es/models/index.js +0 -1
  229. package/dist-es/protocols/Aws_restJson1.js +0 -2289
  230. package/dist-types/models/index.d.ts +0 -1
  231. package/dist-types/protocols/Aws_restJson1.d.ts +0 -506
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
2
- import { ListConversationsNestedAggregationsInput, ListConversationsNestedAggregationsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListConversationsNestedAggregationsInput, ListConversationsNestedAggregationsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,9 @@ export interface ListConversationsNestedAggregationsCommandInput extends ListCon
22
22
  export interface ListConversationsNestedAggregationsCommandOutput extends ListConversationsNestedAggregationsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListConversationsNestedAggregationsCommand_base: {
25
- new (input: ListConversationsNestedAggregationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConversationsNestedAggregationsCommandInput, ListConversationsNestedAggregationsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: ListConversationsNestedAggregationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConversationsNestedAggregationsCommandInput, ListConversationsNestedAggregationsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListConversationsNestedAggregationsCommandInput): import("@smithy/core/client").CommandImpl<ListConversationsNestedAggregationsCommandInput, ListConversationsNestedAggregationsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListConversationsNestedAggregationsCommandInput): import("@smithy/core/client").CommandImpl<ListConversationsNestedAggregationsCommandInput, ListConversationsNestedAggregationsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
30
  * Lists nested drill-down data showing relationships between dimensions.
@@ -33,6 +33,8 @@ declare const ListConversationsNestedAggregationsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WdaInsightsClient, ListConversationsNestedAggregationsCommand } from "@wildix/wda-insights-client"; // ES Modules import
35
35
  * // const { WdaInsightsClient, ListConversationsNestedAggregationsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
+ * // import type { WdaInsightsClientConfig } from "@wildix/wda-insights-client";
37
+ * const config = {}; // type is WdaInsightsClientConfig
36
38
  * const client = new WdaInsightsClient(config);
37
39
  * const input = { // ListConversationsNestedAggregationsInput
38
40
  * company: "STRING_VALUE",
@@ -52,6 +54,43 @@ declare const ListConversationsNestedAggregationsCommand_base: {
52
54
  * },
53
55
  * ],
54
56
  * },
57
+ * connectTime: {
58
+ * buckets: [
59
+ * {
60
+ * title: "STRING_VALUE", // required
61
+ * from: Number("int"),
62
+ * to: Number("int"),
63
+ * },
64
+ * ],
65
+ * },
66
+ * talkTime: {
67
+ * buckets: [
68
+ * {
69
+ * title: "STRING_VALUE", // required
70
+ * from: Number("int"),
71
+ * to: Number("int"),
72
+ * },
73
+ * ],
74
+ * },
75
+ * waitTime: {
76
+ * buckets: [
77
+ * {
78
+ * title: "STRING_VALUE", // required
79
+ * from: Number("int"),
80
+ * to: Number("int"),
81
+ * },
82
+ * ],
83
+ * },
84
+ * queueTime: {
85
+ * buckets: [
86
+ * {
87
+ * title: "STRING_VALUE", // required
88
+ * from: Number("int"),
89
+ * to: Number("int"),
90
+ * },
91
+ * ],
92
+ * },
93
+ * holdTime: "<AggregationDurationDefinition>",
55
94
  * service: {},
56
95
  * extension: {},
57
96
  * chatbot: {},
@@ -149,27 +188,32 @@ declare const ListConversationsNestedAggregationsCommand_base: {
149
188
  * from: Number("int"),
150
189
  * to: Number("int"),
151
190
  * },
191
+ * connectTime: {
192
+ * from: Number("int"),
193
+ * to: Number("int"),
194
+ * },
195
+ * talkTime: {
196
+ * from: Number("int"),
197
+ * to: Number("int"),
198
+ * },
199
+ * waitTime: {
200
+ * from: Number("int"),
201
+ * to: Number("int"),
202
+ * },
203
+ * queueTime: {
204
+ * from: Number("int"),
205
+ * to: Number("int"),
206
+ * },
207
+ * holdTime: "<ListConversationsFilterNumber>",
152
208
  * interaction: { // ListConversationsFilterInteraction
153
- * talkRatio: {
154
- * from: Number("int"),
155
- * to: Number("int"),
156
- * },
157
- * wordsPerMinute: {
158
- * from: Number("int"),
159
- * to: Number("int"),
160
- * },
161
- * interruptions: {
162
- * from: Number("int"),
163
- * to: Number("int"),
164
- * },
209
+ * talkRatio: "<ListConversationsFilterNumber>",
210
+ * wordsPerMinute: "<ListConversationsFilterNumber>",
211
+ * interruptions: "<ListConversationsFilterNumber>",
165
212
  * patience: { // ListConversationsFilterFloat
166
213
  * from: Number("float"),
167
214
  * to: Number("float"),
168
215
  * },
169
- * longestMonologue: {
170
- * from: Number("int"),
171
- * to: Number("int"),
172
- * },
216
+ * longestMonologue: "<ListConversationsFilterNumber>",
173
217
  * longestCustomerStory: "<ListConversationsFilterNumber>",
174
218
  * },
175
219
  * recorded: true || false,
@@ -277,6 +321,43 @@ declare const ListConversationsNestedAggregationsCommand_base: {
277
321
  * // },
278
322
  * // ],
279
323
  * // },
324
+ * // connectTime: {
325
+ * // buckets: [
326
+ * // {
327
+ * // title: "STRING_VALUE", // required
328
+ * // from: Number("int"),
329
+ * // to: Number("int"),
330
+ * // },
331
+ * // ],
332
+ * // },
333
+ * // talkTime: {
334
+ * // buckets: [
335
+ * // {
336
+ * // title: "STRING_VALUE", // required
337
+ * // from: Number("int"),
338
+ * // to: Number("int"),
339
+ * // },
340
+ * // ],
341
+ * // },
342
+ * // waitTime: {
343
+ * // buckets: [
344
+ * // {
345
+ * // title: "STRING_VALUE", // required
346
+ * // from: Number("int"),
347
+ * // to: Number("int"),
348
+ * // },
349
+ * // ],
350
+ * // },
351
+ * // queueTime: {
352
+ * // buckets: [
353
+ * // {
354
+ * // title: "STRING_VALUE", // required
355
+ * // from: Number("int"),
356
+ * // to: Number("int"),
357
+ * // },
358
+ * // ],
359
+ * // },
360
+ * // holdTime: "<AggregationDurationDefinition>",
280
361
  * // service: {},
281
362
  * // extension: {},
282
363
  * // chatbot: {},
@@ -378,27 +459,32 @@ declare const ListConversationsNestedAggregationsCommand_base: {
378
459
  * // from: Number("int"),
379
460
  * // to: Number("int"),
380
461
  * // },
462
+ * // connectTime: {
463
+ * // from: Number("int"),
464
+ * // to: Number("int"),
465
+ * // },
466
+ * // talkTime: {
467
+ * // from: Number("int"),
468
+ * // to: Number("int"),
469
+ * // },
470
+ * // waitTime: {
471
+ * // from: Number("int"),
472
+ * // to: Number("int"),
473
+ * // },
474
+ * // queueTime: {
475
+ * // from: Number("int"),
476
+ * // to: Number("int"),
477
+ * // },
478
+ * // holdTime: "<ListConversationsFilterNumber>",
381
479
  * // interaction: { // ListConversationsFilterInteraction
382
- * // talkRatio: {
383
- * // from: Number("int"),
384
- * // to: Number("int"),
385
- * // },
386
- * // wordsPerMinute: {
387
- * // from: Number("int"),
388
- * // to: Number("int"),
389
- * // },
390
- * // interruptions: {
391
- * // from: Number("int"),
392
- * // to: Number("int"),
393
- * // },
480
+ * // talkRatio: "<ListConversationsFilterNumber>",
481
+ * // wordsPerMinute: "<ListConversationsFilterNumber>",
482
+ * // interruptions: "<ListConversationsFilterNumber>",
394
483
  * // patience: { // ListConversationsFilterFloat
395
484
  * // from: Number("float"),
396
485
  * // to: Number("float"),
397
486
  * // },
398
- * // longestMonologue: {
399
- * // from: Number("int"),
400
- * // to: Number("int"),
401
- * // },
487
+ * // longestMonologue: "<ListConversationsFilterNumber>",
402
488
  * // longestCustomerStory: "<ListConversationsFilterNumber>",
403
489
  * // },
404
490
  * // recorded: true || false,
@@ -492,15 +578,12 @@ declare const ListConversationsNestedAggregationsCommand_base: {
492
578
  * // fieldId: "STRING_VALUE", // required
493
579
  * // },
494
580
  * // direction: "<AggregationNoConfigurationDefinition>",
495
- * // duration: {
496
- * // buckets: [
497
- * // {
498
- * // title: "STRING_VALUE", // required
499
- * // from: Number("int"),
500
- * // to: Number("int"),
501
- * // },
502
- * // ],
503
- * // },
581
+ * // duration: "<AggregationDurationDefinition>",
582
+ * // connectTime: "<AggregationDurationDefinition>",
583
+ * // talkTime: "<AggregationDurationDefinition>",
584
+ * // waitTime: "<AggregationDurationDefinition>",
585
+ * // queueTime: "<AggregationDurationDefinition>",
586
+ * // holdTime: "<AggregationDurationDefinition>",
504
587
  * // service: "<AggregationNoConfigurationDefinition>",
505
588
  * // extension: "<AggregationNoConfigurationDefinition>",
506
589
  * // chatbot: "<AggregationNoConfigurationDefinition>",
@@ -583,6 +666,11 @@ declare const ListConversationsNestedAggregationsCommand_base: {
583
666
  * // ],
584
667
  * // language: "<ListConversationsFilterKeyword>",
585
668
  * // duration: "<ListConversationsFilterNumber>",
669
+ * // connectTime: "<ListConversationsFilterNumber>",
670
+ * // talkTime: "<ListConversationsFilterNumber>",
671
+ * // waitTime: "<ListConversationsFilterNumber>",
672
+ * // queueTime: "<ListConversationsFilterNumber>",
673
+ * // holdTime: "<ListConversationsFilterNumber>",
586
674
  * // interaction: {
587
675
  * // talkRatio: "<ListConversationsFilterNumber>",
588
676
  * // wordsPerMinute: "<ListConversationsFilterNumber>",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
2
- import { ListDashboardsInput, ListDashboardsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListDashboardsInput, ListDashboardsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,9 @@ export interface ListDashboardsCommandInput extends ListDashboardsInput {
22
22
  export interface ListDashboardsCommandOutput extends ListDashboardsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListDashboardsCommand_base: {
25
- new (input: ListDashboardsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDashboardsCommandInput, ListDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListDashboardsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDashboardsCommandInput, ListDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListDashboardsCommandInput): import("@smithy/core/client").CommandImpl<ListDashboardsCommandInput, ListDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListDashboardsCommandInput]): import("@smithy/core/client").CommandImpl<ListDashboardsCommandInput, ListDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
30
  * Lists all dashboard and pinned configurations available to the user.
@@ -33,6 +33,8 @@ declare const ListDashboardsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WdaInsightsClient, ListDashboardsCommand } from "@wildix/wda-insights-client"; // ES Modules import
35
35
  * // const { WdaInsightsClient, ListDashboardsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
+ * // import type { WdaInsightsClientConfig } from "@wildix/wda-insights-client";
37
+ * const config = {}; // type is WdaInsightsClientConfig
36
38
  * const client = new WdaInsightsClient(config);
37
39
  * const input = { // ListDashboardsInput
38
40
  * company: "STRING_VALUE",
@@ -152,27 +154,32 @@ declare const ListDashboardsCommand_base: {
152
154
  * // from: Number("int"),
153
155
  * // to: Number("int"),
154
156
  * // },
157
+ * // connectTime: {
158
+ * // from: Number("int"),
159
+ * // to: Number("int"),
160
+ * // },
161
+ * // talkTime: {
162
+ * // from: Number("int"),
163
+ * // to: Number("int"),
164
+ * // },
165
+ * // waitTime: {
166
+ * // from: Number("int"),
167
+ * // to: Number("int"),
168
+ * // },
169
+ * // queueTime: {
170
+ * // from: Number("int"),
171
+ * // to: Number("int"),
172
+ * // },
173
+ * // holdTime: "<ListConversationsFilterNumber>",
155
174
  * // interaction: { // ListConversationsFilterInteraction
156
- * // talkRatio: {
157
- * // from: Number("int"),
158
- * // to: Number("int"),
159
- * // },
160
- * // wordsPerMinute: {
161
- * // from: Number("int"),
162
- * // to: Number("int"),
163
- * // },
164
- * // interruptions: {
165
- * // from: Number("int"),
166
- * // to: Number("int"),
167
- * // },
175
+ * // talkRatio: "<ListConversationsFilterNumber>",
176
+ * // wordsPerMinute: "<ListConversationsFilterNumber>",
177
+ * // interruptions: "<ListConversationsFilterNumber>",
168
178
  * // patience: { // ListConversationsFilterFloat
169
179
  * // from: Number("float"),
170
180
  * // to: Number("float"),
171
181
  * // },
172
- * // longestMonologue: {
173
- * // from: Number("int"),
174
- * // to: Number("int"),
175
- * // },
182
+ * // longestMonologue: "<ListConversationsFilterNumber>",
176
183
  * // longestCustomerStory: "<ListConversationsFilterNumber>",
177
184
  * // },
178
185
  * // recorded: true || false,
@@ -312,6 +319,11 @@ declare const ListDashboardsCommand_base: {
312
319
  * // ],
313
320
  * // language: "<ListConversationsFilterKeyword>",
314
321
  * // duration: "<ListConversationsFilterNumber>",
322
+ * // connectTime: "<ListConversationsFilterNumber>",
323
+ * // talkTime: "<ListConversationsFilterNumber>",
324
+ * // waitTime: "<ListConversationsFilterNumber>",
325
+ * // queueTime: "<ListConversationsFilterNumber>",
326
+ * // holdTime: "<ListConversationsFilterNumber>",
315
327
  * // interaction: {
316
328
  * // talkRatio: "<ListConversationsFilterNumber>",
317
329
  * // wordsPerMinute: "<ListConversationsFilterNumber>",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
2
- import { ListFiltersInput, ListFiltersOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListFiltersInput, ListFiltersOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,9 @@ export interface ListFiltersCommandInput extends ListFiltersInput {
22
22
  export interface ListFiltersCommandOutput extends ListFiltersOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListFiltersCommand_base: {
25
- new (input: ListFiltersCommandInput): import("@smithy/smithy-client").CommandImpl<ListFiltersCommandInput, ListFiltersCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListFiltersCommandInput]): import("@smithy/smithy-client").CommandImpl<ListFiltersCommandInput, ListFiltersCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListFiltersCommandInput): import("@smithy/core/client").CommandImpl<ListFiltersCommandInput, ListFiltersCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListFiltersCommandInput]): import("@smithy/core/client").CommandImpl<ListFiltersCommandInput, ListFiltersCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
30
  * Lists all filters available for the user.
@@ -33,6 +33,8 @@ declare const ListFiltersCommand_base: {
33
33
  * ```javascript
34
34
  * import { WdaInsightsClient, ListFiltersCommand } from "@wildix/wda-insights-client"; // ES Modules import
35
35
  * // const { WdaInsightsClient, ListFiltersCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
+ * // import type { WdaInsightsClientConfig } from "@wildix/wda-insights-client";
37
+ * const config = {}; // type is WdaInsightsClientConfig
36
38
  * const client = new WdaInsightsClient(config);
37
39
  * const input = { // ListFiltersInput
38
40
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
2
- import { ListPinnedDashboardsInput, ListPinnedDashboardsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListPinnedDashboardsInput, ListPinnedDashboardsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,9 @@ export interface ListPinnedDashboardsCommandInput extends ListPinnedDashboardsIn
22
22
  export interface ListPinnedDashboardsCommandOutput extends ListPinnedDashboardsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListPinnedDashboardsCommand_base: {
25
- new (input: ListPinnedDashboardsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPinnedDashboardsCommandInput, ListPinnedDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListPinnedDashboardsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListPinnedDashboardsCommandInput, ListPinnedDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListPinnedDashboardsCommandInput): import("@smithy/core/client").CommandImpl<ListPinnedDashboardsCommandInput, ListPinnedDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListPinnedDashboardsCommandInput]): import("@smithy/core/client").CommandImpl<ListPinnedDashboardsCommandInput, ListPinnedDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
30
  * Lists all pinned dashboards configurations available to the user.
@@ -33,6 +33,8 @@ declare const ListPinnedDashboardsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WdaInsightsClient, ListPinnedDashboardsCommand } from "@wildix/wda-insights-client"; // ES Modules import
35
35
  * // const { WdaInsightsClient, ListPinnedDashboardsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
+ * // import type { WdaInsightsClientConfig } from "@wildix/wda-insights-client";
37
+ * const config = {}; // type is WdaInsightsClientConfig
36
38
  * const client = new WdaInsightsClient(config);
37
39
  * const input = { // ListPinnedDashboardsInput
38
40
  * company: "STRING_VALUE",
@@ -155,27 +157,32 @@ declare const ListPinnedDashboardsCommand_base: {
155
157
  * // from: Number("int"),
156
158
  * // to: Number("int"),
157
159
  * // },
160
+ * // connectTime: {
161
+ * // from: Number("int"),
162
+ * // to: Number("int"),
163
+ * // },
164
+ * // talkTime: {
165
+ * // from: Number("int"),
166
+ * // to: Number("int"),
167
+ * // },
168
+ * // waitTime: {
169
+ * // from: Number("int"),
170
+ * // to: Number("int"),
171
+ * // },
172
+ * // queueTime: {
173
+ * // from: Number("int"),
174
+ * // to: Number("int"),
175
+ * // },
176
+ * // holdTime: "<ListConversationsFilterNumber>",
158
177
  * // interaction: { // ListConversationsFilterInteraction
159
- * // talkRatio: {
160
- * // from: Number("int"),
161
- * // to: Number("int"),
162
- * // },
163
- * // wordsPerMinute: {
164
- * // from: Number("int"),
165
- * // to: Number("int"),
166
- * // },
167
- * // interruptions: {
168
- * // from: Number("int"),
169
- * // to: Number("int"),
170
- * // },
178
+ * // talkRatio: "<ListConversationsFilterNumber>",
179
+ * // wordsPerMinute: "<ListConversationsFilterNumber>",
180
+ * // interruptions: "<ListConversationsFilterNumber>",
171
181
  * // patience: { // ListConversationsFilterFloat
172
182
  * // from: Number("float"),
173
183
  * // to: Number("float"),
174
184
  * // },
175
- * // longestMonologue: {
176
- * // from: Number("int"),
177
- * // to: Number("int"),
178
- * // },
185
+ * // longestMonologue: "<ListConversationsFilterNumber>",
179
186
  * // longestCustomerStory: "<ListConversationsFilterNumber>",
180
187
  * // },
181
188
  * // recorded: true || false,
@@ -315,6 +322,11 @@ declare const ListPinnedDashboardsCommand_base: {
315
322
  * // ],
316
323
  * // language: "<ListConversationsFilterKeyword>",
317
324
  * // duration: "<ListConversationsFilterNumber>",
325
+ * // connectTime: "<ListConversationsFilterNumber>",
326
+ * // talkTime: "<ListConversationsFilterNumber>",
327
+ * // waitTime: "<ListConversationsFilterNumber>",
328
+ * // queueTime: "<ListConversationsFilterNumber>",
329
+ * // holdTime: "<ListConversationsFilterNumber>",
318
330
  * // interaction: {
319
331
  * // talkRatio: "<ListConversationsFilterNumber>",
320
332
  * // wordsPerMinute: "<ListConversationsFilterNumber>",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
2
- import { ListPlaylistItemsInput, ListPlaylistItemsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListPlaylistItemsInput, ListPlaylistItemsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,9 @@ export interface ListPlaylistItemsCommandInput extends ListPlaylistItemsInput {
22
22
  export interface ListPlaylistItemsCommandOutput extends ListPlaylistItemsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListPlaylistItemsCommand_base: {
25
- new (input: ListPlaylistItemsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPlaylistItemsCommandInput, ListPlaylistItemsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: ListPlaylistItemsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPlaylistItemsCommandInput, ListPlaylistItemsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListPlaylistItemsCommandInput): import("@smithy/core/client").CommandImpl<ListPlaylistItemsCommandInput, ListPlaylistItemsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListPlaylistItemsCommandInput): import("@smithy/core/client").CommandImpl<ListPlaylistItemsCommandInput, ListPlaylistItemsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
30
  * Lists all playlist and pinned configurations available to the user.
@@ -33,6 +33,8 @@ declare const ListPlaylistItemsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WdaInsightsClient, ListPlaylistItemsCommand } from "@wildix/wda-insights-client"; // ES Modules import
35
35
  * // const { WdaInsightsClient, ListPlaylistItemsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
+ * // import type { WdaInsightsClientConfig } from "@wildix/wda-insights-client";
37
+ * const config = {}; // type is WdaInsightsClientConfig
36
38
  * const client = new WdaInsightsClient(config);
37
39
  * const input = { // ListPlaylistItemsInput
38
40
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
2
- import { ListPlaylistsInput, ListPlaylistsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListPlaylistsInput, ListPlaylistsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,9 @@ export interface ListPlaylistsCommandInput extends ListPlaylistsInput {
22
22
  export interface ListPlaylistsCommandOutput extends ListPlaylistsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListPlaylistsCommand_base: {
25
- new (input: ListPlaylistsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPlaylistsCommandInput, ListPlaylistsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListPlaylistsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListPlaylistsCommandInput, ListPlaylistsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListPlaylistsCommandInput): import("@smithy/core/client").CommandImpl<ListPlaylistsCommandInput, ListPlaylistsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListPlaylistsCommandInput]): import("@smithy/core/client").CommandImpl<ListPlaylistsCommandInput, ListPlaylistsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
30
  * Lists all playlist and pinned configurations available to the user.
@@ -33,6 +33,8 @@ declare const ListPlaylistsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WdaInsightsClient, ListPlaylistsCommand } from "@wildix/wda-insights-client"; // ES Modules import
35
35
  * // const { WdaInsightsClient, ListPlaylistsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
+ * // import type { WdaInsightsClientConfig } from "@wildix/wda-insights-client";
37
+ * const config = {}; // type is WdaInsightsClientConfig
36
38
  * const client = new WdaInsightsClient(config);
37
39
  * const input = { // ListPlaylistsInput
38
40
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
2
- import { ListProjectionsInput, ListProjectionsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListProjectionsInput, ListProjectionsOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,9 @@ export interface ListProjectionsCommandInput extends ListProjectionsInput {
22
22
  export interface ListProjectionsCommandOutput extends ListProjectionsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListProjectionsCommand_base: {
25
- new (input: ListProjectionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProjectionsCommandInput, ListProjectionsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListProjectionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListProjectionsCommandInput, ListProjectionsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListProjectionsCommandInput): import("@smithy/core/client").CommandImpl<ListProjectionsCommandInput, ListProjectionsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListProjectionsCommandInput]): import("@smithy/core/client").CommandImpl<ListProjectionsCommandInput, ListProjectionsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
30
  * Lists all projections and compatibility categories available for the tenant.
@@ -33,6 +33,8 @@ declare const ListProjectionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { WdaInsightsClient, ListProjectionsCommand } from "@wildix/wda-insights-client"; // ES Modules import
35
35
  * // const { WdaInsightsClient, ListProjectionsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
+ * // import type { WdaInsightsClientConfig } from "@wildix/wda-insights-client";
37
+ * const config = {}; // type is WdaInsightsClientConfig
36
38
  * const client = new WdaInsightsClient(config);
37
39
  * const input = { // ListProjectionsInput
38
40
  * company: "STRING_VALUE",
@@ -146,27 +148,32 @@ declare const ListProjectionsCommand_base: {
146
148
  * // from: Number("int"),
147
149
  * // to: Number("int"),
148
150
  * // },
151
+ * // connectTime: {
152
+ * // from: Number("int"),
153
+ * // to: Number("int"),
154
+ * // },
155
+ * // talkTime: {
156
+ * // from: Number("int"),
157
+ * // to: Number("int"),
158
+ * // },
159
+ * // waitTime: {
160
+ * // from: Number("int"),
161
+ * // to: Number("int"),
162
+ * // },
163
+ * // queueTime: {
164
+ * // from: Number("int"),
165
+ * // to: Number("int"),
166
+ * // },
167
+ * // holdTime: "<ListConversationsFilterNumber>",
149
168
  * // interaction: { // ListConversationsFilterInteraction
150
- * // talkRatio: {
151
- * // from: Number("int"),
152
- * // to: Number("int"),
153
- * // },
154
- * // wordsPerMinute: {
155
- * // from: Number("int"),
156
- * // to: Number("int"),
157
- * // },
158
- * // interruptions: {
159
- * // from: Number("int"),
160
- * // to: Number("int"),
161
- * // },
169
+ * // talkRatio: "<ListConversationsFilterNumber>",
170
+ * // wordsPerMinute: "<ListConversationsFilterNumber>",
171
+ * // interruptions: "<ListConversationsFilterNumber>",
162
172
  * // patience: { // ListConversationsFilterFloat
163
173
  * // from: Number("float"),
164
174
  * // to: Number("float"),
165
175
  * // },
166
- * // longestMonologue: {
167
- * // from: Number("int"),
168
- * // to: Number("int"),
169
- * // },
176
+ * // longestMonologue: "<ListConversationsFilterNumber>",
170
177
  * // longestCustomerStory: "<ListConversationsFilterNumber>",
171
178
  * // },
172
179
  * // recorded: true || false,