@wildix/wda-insights-client 1.1.30 → 1.1.34

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 (33) hide show
  1. package/dist-cjs/WdaInsights.js +6 -0
  2. package/dist-cjs/commands/GetAnalysisSettingsCommand.js +21 -0
  3. package/dist-cjs/commands/PutAnalysisSettingsCommand.js +21 -0
  4. package/dist-cjs/commands/UpdateProjectionAnalysisSettingsCommand.js +21 -0
  5. package/dist-cjs/commands/index.js +3 -0
  6. package/dist-cjs/models/models_0.js +7 -13
  7. package/dist-cjs/protocols/Aws_restJson1.js +107 -5
  8. package/dist-es/WdaInsights.js +6 -0
  9. package/dist-es/commands/GetAnalysisSettingsCommand.js +17 -0
  10. package/dist-es/commands/PutAnalysisSettingsCommand.js +17 -0
  11. package/dist-es/commands/UpdateProjectionAnalysisSettingsCommand.js +17 -0
  12. package/dist-es/commands/index.js +3 -0
  13. package/dist-es/models/models_0.js +5 -11
  14. package/dist-es/protocols/Aws_restJson1.js +98 -2
  15. package/dist-types/WdaInsights.d.ts +23 -0
  16. package/dist-types/WdaInsightsClient.d.ts +5 -2
  17. package/dist-types/commands/CreateProjectionCommand.d.ts +10 -8
  18. package/dist-types/commands/DisableProjectionCommand.d.ts +5 -4
  19. package/dist-types/commands/EnableProjectionCommand.d.ts +5 -4
  20. package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +78 -0
  21. package/dist-types/commands/GetProjectionCommand.d.ts +5 -4
  22. package/dist-types/commands/ListConversationsCommand.d.ts +30 -22
  23. package/dist-types/commands/ListPlaylistItemsCommand.d.ts +30 -22
  24. package/dist-types/commands/ListProjectionsCommand.d.ts +5 -4
  25. package/dist-types/commands/ListWatchHistoryCommand.d.ts +30 -22
  26. package/dist-types/commands/PauseProjectionCommand.d.ts +5 -4
  27. package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +79 -0
  28. package/dist-types/commands/UpdateProjectionAnalysisSettingsCommand.d.ts +145 -0
  29. package/dist-types/commands/UpdateProjectionCommand.d.ts +8 -8
  30. package/dist-types/commands/index.d.ts +3 -0
  31. package/dist-types/models/models_0.d.ts +120 -78
  32. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  33. package/package.json +1 -1
@@ -79,9 +79,10 @@ export const se_CreateProjectionCommand = async (input, context) => {
79
79
  'conditions': _ => _json(_),
80
80
  'description': [],
81
81
  'fields': _ => _json(_),
82
+ 'group': [],
82
83
  'id': [],
83
84
  'instructions': [],
84
- 'model': _ => _json(_),
85
+ 'model': [],
85
86
  'name': [],
86
87
  }));
87
88
  b.m("POST")
@@ -234,6 +235,20 @@ export const se_EnableProjectionCommand = async (input, context) => {
234
235
  .b(body);
235
236
  return b.build();
236
237
  };
238
+ export const se_GetAnalysisSettingsCommand = async (input, context) => {
239
+ const b = rb(input, context);
240
+ const headers = {};
241
+ b.bp("/v2/insights/analysis/settings");
242
+ const query = map({
243
+ [_c]: [, input[_c]],
244
+ });
245
+ let body;
246
+ b.m("GET")
247
+ .h(headers)
248
+ .q(query)
249
+ .b(body);
250
+ return b.build();
251
+ };
237
252
  export const se_GetCallCharacteristicsCommand = async (input, context) => {
238
253
  const b = rb(input, context);
239
254
  const headers = {};
@@ -692,6 +707,25 @@ export const se_PauseProjectionCommand = async (input, context) => {
692
707
  .b(body);
693
708
  return b.build();
694
709
  };
710
+ export const se_PutAnalysisSettingsCommand = async (input, context) => {
711
+ const b = rb(input, context);
712
+ const headers = {
713
+ 'content-type': 'application/json',
714
+ };
715
+ b.bp("/v2/insights/analysis/settings");
716
+ const query = map({
717
+ [_c]: [, input[_c]],
718
+ });
719
+ let body;
720
+ body = JSON.stringify(take(input, {
721
+ 'defaultModel': [],
722
+ }));
723
+ b.m("PUT")
724
+ .h(headers)
725
+ .q(query)
726
+ .b(body);
727
+ return b.build();
728
+ };
695
729
  export const se_PutPlaylistItemCommand = async (input, context) => {
696
730
  const b = rb(input, context);
697
731
  const headers = {
@@ -907,7 +941,6 @@ export const se_UpdateProjectionCommand = async (input, context) => {
907
941
  'description': [],
908
942
  'fields': _ => _json(_),
909
943
  'instructions': [],
910
- 'model': _ => _json(_),
911
944
  'name': [],
912
945
  }));
913
946
  b.m("PUT")
@@ -916,6 +949,27 @@ export const se_UpdateProjectionCommand = async (input, context) => {
916
949
  .b(body);
917
950
  return b.build();
918
951
  };
952
+ export const se_UpdateProjectionAnalysisSettingsCommand = async (input, context) => {
953
+ const b = rb(input, context);
954
+ const headers = {
955
+ 'content-type': 'application/json',
956
+ };
957
+ b.bp("/v2/insights/projections/{id}/analysis-settings");
958
+ b.p('id', () => input.id, '{id}', false);
959
+ const query = map({
960
+ [_c]: [, input[_c]],
961
+ });
962
+ let body;
963
+ body = JSON.stringify(take(input, {
964
+ 'group': [],
965
+ 'model': [],
966
+ }));
967
+ b.m("PATCH")
968
+ .h(headers)
969
+ .q(query)
970
+ .b(body);
971
+ return b.build();
972
+ };
919
973
  export const se_UpdateProjectionsCategoryCommand = async (input, context) => {
920
974
  const b = rb(input, context);
921
975
  const headers = {
@@ -1115,6 +1169,20 @@ export const de_EnableProjectionCommand = async (output, context) => {
1115
1169
  Object.assign(contents, doc);
1116
1170
  return contents;
1117
1171
  };
1172
+ export const de_GetAnalysisSettingsCommand = async (output, context) => {
1173
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1174
+ return de_CommandError(output, context);
1175
+ }
1176
+ const contents = map({
1177
+ $metadata: deserializeMetadata(output),
1178
+ });
1179
+ const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1180
+ const doc = take(data, {
1181
+ 'settings': _json,
1182
+ });
1183
+ Object.assign(contents, doc);
1184
+ return contents;
1185
+ };
1118
1186
  export const de_GetCallCharacteristicsCommand = async (output, context) => {
1119
1187
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1120
1188
  return de_CommandError(output, context);
@@ -1524,6 +1592,20 @@ export const de_PauseProjectionCommand = async (output, context) => {
1524
1592
  Object.assign(contents, doc);
1525
1593
  return contents;
1526
1594
  };
1595
+ export const de_PutAnalysisSettingsCommand = async (output, context) => {
1596
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1597
+ return de_CommandError(output, context);
1598
+ }
1599
+ const contents = map({
1600
+ $metadata: deserializeMetadata(output),
1601
+ });
1602
+ const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1603
+ const doc = take(data, {
1604
+ 'settings': _json,
1605
+ });
1606
+ Object.assign(contents, doc);
1607
+ return contents;
1608
+ };
1527
1609
  export const de_PutPlaylistItemCommand = async (output, context) => {
1528
1610
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1529
1611
  return de_CommandError(output, context);
@@ -1662,6 +1744,20 @@ export const de_UpdateProjectionCommand = async (output, context) => {
1662
1744
  Object.assign(contents, doc);
1663
1745
  return contents;
1664
1746
  };
1747
+ export const de_UpdateProjectionAnalysisSettingsCommand = async (output, context) => {
1748
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1749
+ return de_CommandError(output, context);
1750
+ }
1751
+ const contents = map({
1752
+ $metadata: deserializeMetadata(output),
1753
+ });
1754
+ const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1755
+ const doc = take(data, {
1756
+ 'projection': _json,
1757
+ });
1758
+ Object.assign(contents, doc);
1759
+ return contents;
1760
+ };
1665
1761
  export const de_UpdateProjectionsCategoryCommand = async (output, context) => {
1666
1762
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1667
1763
  return de_CommandError(output, context);
@@ -12,6 +12,7 @@ import { DeleteProjectionCommandInput, DeleteProjectionCommandOutput } from "./c
12
12
  import { DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput } from "./commands/DeleteProjectionsCategoryCommand";
13
13
  import { DisableProjectionCommandInput, DisableProjectionCommandOutput } from "./commands/DisableProjectionCommand";
14
14
  import { EnableProjectionCommandInput, EnableProjectionCommandOutput } from "./commands/EnableProjectionCommand";
15
+ import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "./commands/GetAnalysisSettingsCommand";
15
16
  import { GetCallCharacteristicsCommandInput, GetCallCharacteristicsCommandOutput } from "./commands/GetCallCharacteristicsCommand";
16
17
  import { GetCallInsightsCommandInput, GetCallInsightsCommandOutput } from "./commands/GetCallInsightsCommand";
17
18
  import { GetCallStateCommandInput, GetCallStateCommandOutput } from "./commands/GetCallStateCommand";
@@ -40,6 +41,7 @@ import { ListPlaylistsCommandInput, ListPlaylistsCommandOutput } from "./command
40
41
  import { ListProjectionsCommandInput, ListProjectionsCommandOutput } from "./commands/ListProjectionsCommand";
41
42
  import { ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput } from "./commands/ListWatchHistoryCommand";
42
43
  import { PauseProjectionCommandInput, PauseProjectionCommandOutput } from "./commands/PauseProjectionCommand";
44
+ import { PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput } from "./commands/PutAnalysisSettingsCommand";
43
45
  import { PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput } from "./commands/PutPlaylistItemCommand";
44
46
  import { QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput } from "./commands/QueryConversationsCountCommand";
45
47
  import { ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput } from "./commands/ScheduleCallSummaryGenerationCommand";
@@ -50,6 +52,7 @@ import { UpdateFilterCommandInput, UpdateFilterCommandOutput } from "./commands/
50
52
  import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput } from "./commands/UpdatePinnedDashboardsCommand";
51
53
  import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "./commands/UpdatePlaylistAccessCommand";
52
54
  import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "./commands/UpdatePlaylistCommand";
55
+ import { UpdateProjectionAnalysisSettingsCommandInput, UpdateProjectionAnalysisSettingsCommandOutput } from "./commands/UpdateProjectionAnalysisSettingsCommand";
53
56
  import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "./commands/UpdateProjectionCommand";
54
57
  import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "./commands/UpdateProjectionsCategoryCommand";
55
58
  import { WatchCommandInput, WatchCommandOutput } from "./commands/WatchCommand";
@@ -133,6 +136,13 @@ export interface WdaInsights {
133
136
  enableProjection(args: EnableProjectionCommandInput, options?: __HttpHandlerOptions): Promise<EnableProjectionCommandOutput>;
134
137
  enableProjection(args: EnableProjectionCommandInput, cb: (err: any, data?: EnableProjectionCommandOutput) => void): void;
135
138
  enableProjection(args: EnableProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableProjectionCommandOutput) => void): void;
139
+ /**
140
+ * @see {@link GetAnalysisSettingsCommand}
141
+ */
142
+ getAnalysisSettings(): Promise<GetAnalysisSettingsCommandOutput>;
143
+ getAnalysisSettings(args: GetAnalysisSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAnalysisSettingsCommandOutput>;
144
+ getAnalysisSettings(args: GetAnalysisSettingsCommandInput, cb: (err: any, data?: GetAnalysisSettingsCommandOutput) => void): void;
145
+ getAnalysisSettings(args: GetAnalysisSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnalysisSettingsCommandOutput) => void): void;
136
146
  /**
137
147
  * @see {@link GetCallCharacteristicsCommand}
138
148
  */
@@ -310,6 +320,13 @@ export interface WdaInsights {
310
320
  pauseProjection(args: PauseProjectionCommandInput, options?: __HttpHandlerOptions): Promise<PauseProjectionCommandOutput>;
311
321
  pauseProjection(args: PauseProjectionCommandInput, cb: (err: any, data?: PauseProjectionCommandOutput) => void): void;
312
322
  pauseProjection(args: PauseProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseProjectionCommandOutput) => void): void;
323
+ /**
324
+ * @see {@link PutAnalysisSettingsCommand}
325
+ */
326
+ putAnalysisSettings(): Promise<PutAnalysisSettingsCommandOutput>;
327
+ putAnalysisSettings(args: PutAnalysisSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutAnalysisSettingsCommandOutput>;
328
+ putAnalysisSettings(args: PutAnalysisSettingsCommandInput, cb: (err: any, data?: PutAnalysisSettingsCommandOutput) => void): void;
329
+ putAnalysisSettings(args: PutAnalysisSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAnalysisSettingsCommandOutput) => void): void;
313
330
  /**
314
331
  * @see {@link PutPlaylistItemCommand}
315
332
  */
@@ -377,6 +394,12 @@ export interface WdaInsights {
377
394
  updateProjection(args: UpdateProjectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectionCommandOutput>;
378
395
  updateProjection(args: UpdateProjectionCommandInput, cb: (err: any, data?: UpdateProjectionCommandOutput) => void): void;
379
396
  updateProjection(args: UpdateProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectionCommandOutput) => void): void;
397
+ /**
398
+ * @see {@link UpdateProjectionAnalysisSettingsCommand}
399
+ */
400
+ updateProjectionAnalysisSettings(args: UpdateProjectionAnalysisSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectionAnalysisSettingsCommandOutput>;
401
+ updateProjectionAnalysisSettings(args: UpdateProjectionAnalysisSettingsCommandInput, cb: (err: any, data?: UpdateProjectionAnalysisSettingsCommandOutput) => void): void;
402
+ updateProjectionAnalysisSettings(args: UpdateProjectionAnalysisSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectionAnalysisSettingsCommandOutput) => void): void;
380
403
  /**
381
404
  * @see {@link UpdateProjectionsCategoryCommand}
382
405
  */
@@ -11,6 +11,7 @@ import { DeleteProjectionCommandInput, DeleteProjectionCommandOutput } from "./c
11
11
  import { DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput } from "./commands/DeleteProjectionsCategoryCommand";
12
12
  import { DisableProjectionCommandInput, DisableProjectionCommandOutput } from "./commands/DisableProjectionCommand";
13
13
  import { EnableProjectionCommandInput, EnableProjectionCommandOutput } from "./commands/EnableProjectionCommand";
14
+ import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "./commands/GetAnalysisSettingsCommand";
14
15
  import { GetCallCharacteristicsCommandInput, GetCallCharacteristicsCommandOutput } from "./commands/GetCallCharacteristicsCommand";
15
16
  import { GetCallInsightsCommandInput, GetCallInsightsCommandOutput } from "./commands/GetCallInsightsCommand";
16
17
  import { GetCallStateCommandInput, GetCallStateCommandOutput } from "./commands/GetCallStateCommand";
@@ -39,6 +40,7 @@ import { ListPlaylistsCommandInput, ListPlaylistsCommandOutput } from "./command
39
40
  import { ListProjectionsCommandInput, ListProjectionsCommandOutput } from "./commands/ListProjectionsCommand";
40
41
  import { ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput } from "./commands/ListWatchHistoryCommand";
41
42
  import { PauseProjectionCommandInput, PauseProjectionCommandOutput } from "./commands/PauseProjectionCommand";
43
+ import { PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput } from "./commands/PutAnalysisSettingsCommand";
42
44
  import { PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput } from "./commands/PutPlaylistItemCommand";
43
45
  import { QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput } from "./commands/QueryConversationsCountCommand";
44
46
  import { ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput } from "./commands/ScheduleCallSummaryGenerationCommand";
@@ -49,6 +51,7 @@ import { UpdateFilterCommandInput, UpdateFilterCommandOutput } from "./commands/
49
51
  import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput } from "./commands/UpdatePinnedDashboardsCommand";
50
52
  import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "./commands/UpdatePlaylistAccessCommand";
51
53
  import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "./commands/UpdatePlaylistCommand";
54
+ import { UpdateProjectionAnalysisSettingsCommandInput, UpdateProjectionAnalysisSettingsCommandOutput } from "./commands/UpdateProjectionAnalysisSettingsCommand";
52
55
  import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "./commands/UpdateProjectionCommand";
53
56
  import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "./commands/UpdateProjectionsCategoryCommand";
54
57
  import { WatchCommandInput, WatchCommandOutput } from "./commands/WatchCommand";
@@ -63,11 +66,11 @@ export { __Client };
63
66
  /**
64
67
  * @public
65
68
  */
66
- export type ServiceInputTypes = CreateDashboardCommandInput | CreateFilterCommandInput | CreatePlaylistCommandInput | CreateProjectionCommandInput | CreateProjectionsCategoryCommandInput | DeleteDashboardCommandInput | DeleteFilterCommandInput | DeletePlaylistCommandInput | DeletePlaylistItemCommandInput | DeleteProjectionCommandInput | DeleteProjectionsCategoryCommandInput | DisableProjectionCommandInput | EnableProjectionCommandInput | GetCallCharacteristicsCommandInput | GetCallInsightsCommandInput | GetCallStateCommandInput | GetCallSummaryCommandInput | GetChatInsightsCommandInput | GetChatStateCommandInput | GetChatSummaryCommandInput | GetConferenceInsightsCommandInput | GetConferenceRecordingPresignedDownloadUrlCommandInput | GetConferenceStateCommandInput | GetConferenceSummaryCommandInput | GetConferenceTimeFramesCommandInput | GetDashboardCommandInput | GetPlaylistCommandInput | GetProjectionCommandInput | ListConversationsAggregationsCommandInput | ListConversationsCommandInput | ListConversationsInsightsAggregationsCommandInput | ListConversationsInsightsCommandInput | ListConversationsNestedAggregationsCommandInput | ListDashboardsCommandInput | ListFiltersCommandInput | ListPinnedDashboardsCommandInput | ListPlaylistItemsCommandInput | ListPlaylistsCommandInput | ListProjectionsCommandInput | ListWatchHistoryCommandInput | PauseProjectionCommandInput | PutPlaylistItemCommandInput | QueryConversationsCountCommandInput | ScheduleCallSummaryGenerationCommandInput | ScheduleConferenceSummaryGenerationCommandInput | UpdateDashboardAccessCommandInput | UpdateDashboardCommandInput | UpdateFilterCommandInput | UpdatePinnedDashboardsCommandInput | UpdatePlaylistAccessCommandInput | UpdatePlaylistCommandInput | UpdateProjectionCommandInput | UpdateProjectionsCategoryCommandInput | WatchCommandInput;
69
+ export type ServiceInputTypes = CreateDashboardCommandInput | CreateFilterCommandInput | CreatePlaylistCommandInput | CreateProjectionCommandInput | CreateProjectionsCategoryCommandInput | DeleteDashboardCommandInput | DeleteFilterCommandInput | DeletePlaylistCommandInput | DeletePlaylistItemCommandInput | DeleteProjectionCommandInput | DeleteProjectionsCategoryCommandInput | DisableProjectionCommandInput | EnableProjectionCommandInput | GetAnalysisSettingsCommandInput | GetCallCharacteristicsCommandInput | GetCallInsightsCommandInput | GetCallStateCommandInput | GetCallSummaryCommandInput | GetChatInsightsCommandInput | GetChatStateCommandInput | GetChatSummaryCommandInput | GetConferenceInsightsCommandInput | GetConferenceRecordingPresignedDownloadUrlCommandInput | GetConferenceStateCommandInput | GetConferenceSummaryCommandInput | GetConferenceTimeFramesCommandInput | GetDashboardCommandInput | GetPlaylistCommandInput | GetProjectionCommandInput | ListConversationsAggregationsCommandInput | ListConversationsCommandInput | ListConversationsInsightsAggregationsCommandInput | ListConversationsInsightsCommandInput | ListConversationsNestedAggregationsCommandInput | ListDashboardsCommandInput | ListFiltersCommandInput | ListPinnedDashboardsCommandInput | ListPlaylistItemsCommandInput | ListPlaylistsCommandInput | ListProjectionsCommandInput | ListWatchHistoryCommandInput | PauseProjectionCommandInput | PutAnalysisSettingsCommandInput | PutPlaylistItemCommandInput | QueryConversationsCountCommandInput | ScheduleCallSummaryGenerationCommandInput | ScheduleConferenceSummaryGenerationCommandInput | UpdateDashboardAccessCommandInput | UpdateDashboardCommandInput | UpdateFilterCommandInput | UpdatePinnedDashboardsCommandInput | UpdatePlaylistAccessCommandInput | UpdatePlaylistCommandInput | UpdateProjectionAnalysisSettingsCommandInput | UpdateProjectionCommandInput | UpdateProjectionsCategoryCommandInput | WatchCommandInput;
67
70
  /**
68
71
  * @public
69
72
  */
70
- export type ServiceOutputTypes = CreateDashboardCommandOutput | CreateFilterCommandOutput | CreatePlaylistCommandOutput | CreateProjectionCommandOutput | CreateProjectionsCategoryCommandOutput | DeleteDashboardCommandOutput | DeleteFilterCommandOutput | DeletePlaylistCommandOutput | DeletePlaylistItemCommandOutput | DeleteProjectionCommandOutput | DeleteProjectionsCategoryCommandOutput | DisableProjectionCommandOutput | EnableProjectionCommandOutput | GetCallCharacteristicsCommandOutput | GetCallInsightsCommandOutput | GetCallStateCommandOutput | GetCallSummaryCommandOutput | GetChatInsightsCommandOutput | GetChatStateCommandOutput | GetChatSummaryCommandOutput | GetConferenceInsightsCommandOutput | GetConferenceRecordingPresignedDownloadUrlCommandOutput | GetConferenceStateCommandOutput | GetConferenceSummaryCommandOutput | GetConferenceTimeFramesCommandOutput | GetDashboardCommandOutput | GetPlaylistCommandOutput | GetProjectionCommandOutput | ListConversationsAggregationsCommandOutput | ListConversationsCommandOutput | ListConversationsInsightsAggregationsCommandOutput | ListConversationsInsightsCommandOutput | ListConversationsNestedAggregationsCommandOutput | ListDashboardsCommandOutput | ListFiltersCommandOutput | ListPinnedDashboardsCommandOutput | ListPlaylistItemsCommandOutput | ListPlaylistsCommandOutput | ListProjectionsCommandOutput | ListWatchHistoryCommandOutput | PauseProjectionCommandOutput | PutPlaylistItemCommandOutput | QueryConversationsCountCommandOutput | ScheduleCallSummaryGenerationCommandOutput | ScheduleConferenceSummaryGenerationCommandOutput | UpdateDashboardAccessCommandOutput | UpdateDashboardCommandOutput | UpdateFilterCommandOutput | UpdatePinnedDashboardsCommandOutput | UpdatePlaylistAccessCommandOutput | UpdatePlaylistCommandOutput | UpdateProjectionCommandOutput | UpdateProjectionsCategoryCommandOutput | WatchCommandOutput;
73
+ export type ServiceOutputTypes = CreateDashboardCommandOutput | CreateFilterCommandOutput | CreatePlaylistCommandOutput | CreateProjectionCommandOutput | CreateProjectionsCategoryCommandOutput | DeleteDashboardCommandOutput | DeleteFilterCommandOutput | DeletePlaylistCommandOutput | DeletePlaylistItemCommandOutput | DeleteProjectionCommandOutput | DeleteProjectionsCategoryCommandOutput | DisableProjectionCommandOutput | EnableProjectionCommandOutput | GetAnalysisSettingsCommandOutput | GetCallCharacteristicsCommandOutput | GetCallInsightsCommandOutput | GetCallStateCommandOutput | GetCallSummaryCommandOutput | GetChatInsightsCommandOutput | GetChatStateCommandOutput | GetChatSummaryCommandOutput | GetConferenceInsightsCommandOutput | GetConferenceRecordingPresignedDownloadUrlCommandOutput | GetConferenceStateCommandOutput | GetConferenceSummaryCommandOutput | GetConferenceTimeFramesCommandOutput | GetDashboardCommandOutput | GetPlaylistCommandOutput | GetProjectionCommandOutput | ListConversationsAggregationsCommandOutput | ListConversationsCommandOutput | ListConversationsInsightsAggregationsCommandOutput | ListConversationsInsightsCommandOutput | ListConversationsNestedAggregationsCommandOutput | ListDashboardsCommandOutput | ListFiltersCommandOutput | ListPinnedDashboardsCommandOutput | ListPlaylistItemsCommandOutput | ListPlaylistsCommandOutput | ListProjectionsCommandOutput | ListWatchHistoryCommandOutput | PauseProjectionCommandOutput | PutAnalysisSettingsCommandOutput | PutPlaylistItemCommandOutput | QueryConversationsCountCommandOutput | ScheduleCallSummaryGenerationCommandOutput | ScheduleConferenceSummaryGenerationCommandOutput | UpdateDashboardAccessCommandOutput | UpdateDashboardCommandOutput | UpdateFilterCommandOutput | UpdatePinnedDashboardsCommandOutput | UpdatePlaylistAccessCommandOutput | UpdatePlaylistCommandOutput | UpdateProjectionAnalysisSettingsCommandOutput | UpdateProjectionCommandOutput | UpdateProjectionsCategoryCommandOutput | WatchCommandOutput;
71
74
  /**
72
75
  * @public
73
76
  */
@@ -83,14 +83,15 @@ declare const CreateProjectionCommand_base: {
83
83
  * ],
84
84
  * multi: true || false,
85
85
  * adaptive: true || false,
86
+ * adaptiveOptions: [
87
+ * "STRING_VALUE",
88
+ * ],
86
89
  * },
87
90
  * },
88
91
  * },
89
92
  * ],
90
- * model: { // ProjectionModel
91
- * provider: "OPENAI",
92
- * name: "STRING_VALUE",
93
- * },
93
+ * model: "STRING_VALUE",
94
+ * group: "STRING_VALUE",
94
95
  * company: "STRING_VALUE",
95
96
  * id: "STRING_VALUE", // required
96
97
  * };
@@ -146,14 +147,15 @@ declare const CreateProjectionCommand_base: {
146
147
  * // ],
147
148
  * // multi: true || false,
148
149
  * // adaptive: true || false,
150
+ * // adaptiveOptions: [
151
+ * // "STRING_VALUE",
152
+ * // ],
149
153
  * // },
150
154
  * // },
151
155
  * // },
152
156
  * // ],
153
- * // model: { // ProjectionModel
154
- * // provider: "OPENAI",
155
- * // name: "STRING_VALUE",
156
- * // },
157
+ * // model: "STRING_VALUE",
158
+ * // group: "STRING_VALUE",
157
159
  * // id: "STRING_VALUE", // required
158
160
  * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
159
161
  * // version: Number("int"), // required
@@ -90,14 +90,15 @@ declare const DisableProjectionCommand_base: {
90
90
  * // ],
91
91
  * // multi: true || false,
92
92
  * // adaptive: true || false,
93
+ * // adaptiveOptions: [
94
+ * // "STRING_VALUE",
95
+ * // ],
93
96
  * // },
94
97
  * // },
95
98
  * // },
96
99
  * // ],
97
- * // model: { // ProjectionModel
98
- * // provider: "OPENAI",
99
- * // name: "STRING_VALUE",
100
- * // },
100
+ * // model: "STRING_VALUE",
101
+ * // group: "STRING_VALUE",
101
102
  * // id: "STRING_VALUE", // required
102
103
  * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
103
104
  * // version: Number("int"), // required
@@ -90,14 +90,15 @@ declare const EnableProjectionCommand_base: {
90
90
  * // ],
91
91
  * // multi: true || false,
92
92
  * // adaptive: true || false,
93
+ * // adaptiveOptions: [
94
+ * // "STRING_VALUE",
95
+ * // ],
93
96
  * // },
94
97
  * // },
95
98
  * // },
96
99
  * // ],
97
- * // model: { // ProjectionModel
98
- * // provider: "OPENAI",
99
- * // name: "STRING_VALUE",
100
- * // },
100
+ * // model: "STRING_VALUE",
101
+ * // group: "STRING_VALUE",
101
102
  * // id: "STRING_VALUE", // required
102
103
  * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
103
104
  * // version: Number("int"), // required
@@ -0,0 +1,78 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
2
+ import { GetAnalysisSettingsInput, GetAnalysisSettingsOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetAnalysisSettingsCommand}.
14
+ */
15
+ export interface GetAnalysisSettingsCommandInput extends GetAnalysisSettingsInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetAnalysisSettingsCommand}.
21
+ */
22
+ export interface GetAnalysisSettingsCommandOutput extends GetAnalysisSettingsOutput, __MetadataBearer {
23
+ }
24
+ declare const GetAnalysisSettingsCommand_base: {
25
+ new (input: GetAnalysisSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [GetAnalysisSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * Gets default analysis settings used for projections.
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { WdaInsightsClient, GetAnalysisSettingsCommand } from "@wildix/wda-insights-client"; // ES Modules import
35
+ * // const { WdaInsightsClient, GetAnalysisSettingsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
+ * const client = new WdaInsightsClient(config);
37
+ * const input = { // GetAnalysisSettingsInput
38
+ * company: "STRING_VALUE",
39
+ * };
40
+ * const command = new GetAnalysisSettingsCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // GetAnalysisSettingsOutput
43
+ * // settings: { // AnalysisSettings
44
+ * // defaultModel: "STRING_VALUE",
45
+ * // },
46
+ * // };
47
+ *
48
+ * ```
49
+ *
50
+ * @param GetAnalysisSettingsCommandInput - {@link GetAnalysisSettingsCommandInput}
51
+ * @returns {@link GetAnalysisSettingsCommandOutput}
52
+ * @see {@link GetAnalysisSettingsCommandInput} for command's `input` shape.
53
+ * @see {@link GetAnalysisSettingsCommandOutput} for command's `response` shape.
54
+ * @see {@link WdaInsightsClientResolvedConfig | config} for WdaInsightsClient's `config` shape.
55
+ *
56
+ * @throws {@link ValidationException} (client fault)
57
+ *
58
+ * @throws {@link ForbiddenException} (client fault)
59
+ *
60
+ * @throws {@link WdaInsightsServiceException}
61
+ * <p>Base exception class for all service exceptions from WdaInsights service.</p>
62
+ *
63
+ *
64
+ * @public
65
+ */
66
+ export declare class GetAnalysisSettingsCommand extends GetAnalysisSettingsCommand_base {
67
+ /** @internal type navigation helper, not in runtime. */
68
+ protected static __types: {
69
+ api: {
70
+ input: GetAnalysisSettingsInput;
71
+ output: GetAnalysisSettingsOutput;
72
+ };
73
+ sdk: {
74
+ input: GetAnalysisSettingsCommandInput;
75
+ output: GetAnalysisSettingsCommandOutput;
76
+ };
77
+ };
78
+ }
@@ -90,14 +90,15 @@ declare const GetProjectionCommand_base: {
90
90
  * // ],
91
91
  * // multi: true || false,
92
92
  * // adaptive: true || false,
93
+ * // adaptiveOptions: [
94
+ * // "STRING_VALUE",
95
+ * // ],
93
96
  * // },
94
97
  * // },
95
98
  * // },
96
99
  * // ],
97
- * // model: { // ProjectionModel
98
- * // provider: "OPENAI",
99
- * // name: "STRING_VALUE",
100
- * // },
100
+ * // model: "STRING_VALUE",
101
+ * // group: "STRING_VALUE",
101
102
  * // id: "STRING_VALUE", // required
102
103
  * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
103
104
  * // version: Number("int"), // required
@@ -305,18 +305,6 @@ declare const ListConversationsCommand_base: {
305
305
  * // reason: "pause" || "hold",
306
306
  * // },
307
307
  * // ],
308
- * // destinations: [ // CallFlowAttachmentDestinationList
309
- * // { // CallFlowAttachmentDestination
310
- * // phone: "STRING_VALUE",
311
- * // name: "STRING_VALUE",
312
- * // email: "STRING_VALUE",
313
- * // userId: "STRING_VALUE",
314
- * // userExtension: "STRING_VALUE",
315
- * // userDepartment: "STRING_VALUE",
316
- * // groupId: "STRING_VALUE",
317
- * // groupName: "STRING_VALUE",
318
- * // },
319
- * // ],
320
308
  * // },
321
309
  * // ],
322
310
  * // mergeWith: "STRING_VALUE",
@@ -331,9 +319,9 @@ declare const ListConversationsCommand_base: {
331
319
  * // transcriptionLanguage: "STRING_VALUE",
332
320
  * // transcriptionSeconds: Number("int"),
333
321
  * // attachment: "STRING_VALUE",
334
- * // attachmentType: "VOICEMAIL" || "FAX" || "TRANSCRIPTION",
335
- * // attachmentDestinations: [
336
- * // {
322
+ * // attachmentType: "VOICEMAIL" || "FAX",
323
+ * // attachmentDestinations: [ // CallFlowAttachmentDestinationList
324
+ * // { // CallFlowAttachmentDestination
337
325
  * // phone: "STRING_VALUE",
338
326
  * // name: "STRING_VALUE",
339
327
  * // email: "STRING_VALUE",
@@ -359,26 +347,46 @@ declare const ListConversationsCommand_base: {
359
347
  * // reason: "pause" || "hold",
360
348
  * // },
361
349
  * // ],
362
- * // destinations: "<CallFlowAttachmentDestinationList>",
363
350
  * // },
364
351
  * // fax: { // CallFlowFax
365
352
  * // url: "STRING_VALUE", // required
366
353
  * // status: "ok" || "error",
367
- * // destinations: "<CallFlowAttachmentDestinationList>",
354
+ * // destinations: [
355
+ * // {
356
+ * // phone: "STRING_VALUE",
357
+ * // name: "STRING_VALUE",
358
+ * // email: "STRING_VALUE",
359
+ * // userId: "STRING_VALUE",
360
+ * // userExtension: "STRING_VALUE",
361
+ * // userDepartment: "STRING_VALUE",
362
+ * // groupId: "STRING_VALUE",
363
+ * // groupName: "STRING_VALUE",
364
+ * // },
365
+ * // ],
368
366
  * // owner: "callee" || "caller" || "system",
369
367
  * // error: "STRING_VALUE",
370
368
  * // },
371
369
  * // voicemail: { // CallFlowVoicemail
372
370
  * // url: "STRING_VALUE", // required
373
- * // destinations: "<CallFlowAttachmentDestinationList>",
371
+ * // destinations: [
372
+ * // {
373
+ * // phone: "STRING_VALUE",
374
+ * // name: "STRING_VALUE",
375
+ * // email: "STRING_VALUE",
376
+ * // userId: "STRING_VALUE",
377
+ * // userExtension: "STRING_VALUE",
378
+ * // userDepartment: "STRING_VALUE",
379
+ * // groupId: "STRING_VALUE",
380
+ * // groupName: "STRING_VALUE",
381
+ * // },
382
+ * // ],
374
383
  * // owner: "callee" || "caller" || "system",
375
384
  * // },
376
- * // transcription: { // CallFlowTranscription
377
- * // destinations: "<CallFlowAttachmentDestinationList>",
378
- * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
379
- * // },
380
385
  * // },
381
386
  * // ],
387
+ * // notifications: { // CallFlowNotifications
388
+ * // destinations: "<CallFlowAttachmentDestinationList>",
389
+ * // },
382
390
  * // id: "STRING_VALUE", // required
383
391
  * // pbx: "STRING_VALUE", // required
384
392
  * // time: Number("long"), // required
@@ -131,18 +131,6 @@ declare const ListPlaylistItemsCommand_base: {
131
131
  * // reason: "pause" || "hold",
132
132
  * // },
133
133
  * // ],
134
- * // destinations: [ // CallFlowAttachmentDestinationList
135
- * // { // CallFlowAttachmentDestination
136
- * // phone: "STRING_VALUE",
137
- * // name: "STRING_VALUE",
138
- * // email: "STRING_VALUE",
139
- * // userId: "STRING_VALUE",
140
- * // userExtension: "STRING_VALUE",
141
- * // userDepartment: "STRING_VALUE",
142
- * // groupId: "STRING_VALUE",
143
- * // groupName: "STRING_VALUE",
144
- * // },
145
- * // ],
146
134
  * // },
147
135
  * // ],
148
136
  * // mergeWith: "STRING_VALUE",
@@ -157,9 +145,9 @@ declare const ListPlaylistItemsCommand_base: {
157
145
  * // transcriptionLanguage: "STRING_VALUE",
158
146
  * // transcriptionSeconds: Number("int"),
159
147
  * // attachment: "STRING_VALUE",
160
- * // attachmentType: "VOICEMAIL" || "FAX" || "TRANSCRIPTION",
161
- * // attachmentDestinations: [
162
- * // {
148
+ * // attachmentType: "VOICEMAIL" || "FAX",
149
+ * // attachmentDestinations: [ // CallFlowAttachmentDestinationList
150
+ * // { // CallFlowAttachmentDestination
163
151
  * // phone: "STRING_VALUE",
164
152
  * // name: "STRING_VALUE",
165
153
  * // email: "STRING_VALUE",
@@ -185,26 +173,46 @@ declare const ListPlaylistItemsCommand_base: {
185
173
  * // reason: "pause" || "hold",
186
174
  * // },
187
175
  * // ],
188
- * // destinations: "<CallFlowAttachmentDestinationList>",
189
176
  * // },
190
177
  * // fax: { // CallFlowFax
191
178
  * // url: "STRING_VALUE", // required
192
179
  * // status: "ok" || "error",
193
- * // destinations: "<CallFlowAttachmentDestinationList>",
180
+ * // destinations: [
181
+ * // {
182
+ * // phone: "STRING_VALUE",
183
+ * // name: "STRING_VALUE",
184
+ * // email: "STRING_VALUE",
185
+ * // userId: "STRING_VALUE",
186
+ * // userExtension: "STRING_VALUE",
187
+ * // userDepartment: "STRING_VALUE",
188
+ * // groupId: "STRING_VALUE",
189
+ * // groupName: "STRING_VALUE",
190
+ * // },
191
+ * // ],
194
192
  * // owner: "callee" || "caller" || "system",
195
193
  * // error: "STRING_VALUE",
196
194
  * // },
197
195
  * // voicemail: { // CallFlowVoicemail
198
196
  * // url: "STRING_VALUE", // required
199
- * // destinations: "<CallFlowAttachmentDestinationList>",
197
+ * // destinations: [
198
+ * // {
199
+ * // phone: "STRING_VALUE",
200
+ * // name: "STRING_VALUE",
201
+ * // email: "STRING_VALUE",
202
+ * // userId: "STRING_VALUE",
203
+ * // userExtension: "STRING_VALUE",
204
+ * // userDepartment: "STRING_VALUE",
205
+ * // groupId: "STRING_VALUE",
206
+ * // groupName: "STRING_VALUE",
207
+ * // },
208
+ * // ],
200
209
  * // owner: "callee" || "caller" || "system",
201
210
  * // },
202
- * // transcription: { // CallFlowTranscription
203
- * // destinations: "<CallFlowAttachmentDestinationList>",
204
- * // status: "AVAILABLE" || "POST_TRANSCRIPTION" || "UNAVAILABLE", // required
205
- * // },
206
211
  * // },
207
212
  * // ],
213
+ * // notifications: { // CallFlowNotifications
214
+ * // destinations: "<CallFlowAttachmentDestinationList>",
215
+ * // },
208
216
  * // id: "STRING_VALUE", // required
209
217
  * // pbx: "STRING_VALUE", // required
210
218
  * // time: Number("long"), // required
@@ -90,14 +90,15 @@ declare const ListProjectionsCommand_base: {
90
90
  * // ],
91
91
  * // multi: true || false,
92
92
  * // adaptive: true || false,
93
+ * // adaptiveOptions: [
94
+ * // "STRING_VALUE",
95
+ * // ],
93
96
  * // },
94
97
  * // },
95
98
  * // },
96
99
  * // ],
97
- * // model: { // ProjectionModel
98
- * // provider: "OPENAI",
99
- * // name: "STRING_VALUE",
100
- * // },
100
+ * // model: "STRING_VALUE",
101
+ * // group: "STRING_VALUE",
101
102
  * // id: "STRING_VALUE", // required
102
103
  * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
103
104
  * // version: Number("int"), // required