@wildix/wda-insights-client 1.1.34 → 1.1.35

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 (41) hide show
  1. package/dist-cjs/WdaInsights.js +0 -8
  2. package/dist-cjs/commands/index.js +0 -4
  3. package/dist-cjs/models/models_0.js +9 -6
  4. package/dist-cjs/protocols/Aws_restJson1.js +52 -151
  5. package/dist-es/WdaInsights.js +0 -8
  6. package/dist-es/commands/index.js +0 -4
  7. package/dist-es/models/models_0.js +8 -5
  8. package/dist-es/protocols/Aws_restJson1.js +48 -139
  9. package/dist-types/WdaInsights.d.ts +0 -28
  10. package/dist-types/WdaInsightsClient.d.ts +2 -6
  11. package/dist-types/commands/CreateProjectionCommand.d.ts +360 -6
  12. package/dist-types/commands/DisableProjectionCommand.d.ts +180 -3
  13. package/dist-types/commands/EnableProjectionCommand.d.ts +180 -3
  14. package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +178 -0
  15. package/dist-types/commands/GetProjectionCommand.d.ts +180 -3
  16. package/dist-types/commands/ListConversationsCommand.d.ts +22 -30
  17. package/dist-types/commands/ListPlaylistItemsCommand.d.ts +22 -30
  18. package/dist-types/commands/ListProjectionsCommand.d.ts +181 -10
  19. package/dist-types/commands/ListWatchHistoryCommand.d.ts +22 -30
  20. package/dist-types/commands/PauseProjectionCommand.d.ts +180 -3
  21. package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +356 -0
  22. package/dist-types/commands/UpdateProjectionCommand.d.ts +360 -4
  23. package/dist-types/commands/index.d.ts +0 -4
  24. package/dist-types/models/models_0.d.ts +126 -102
  25. package/dist-types/protocols/Aws_restJson1.d.ts +0 -36
  26. package/dist-types/runtimeConfig.browser.d.ts +1 -6
  27. package/dist-types/runtimeConfig.d.ts +1 -6
  28. package/dist-types/runtimeConfig.native.d.ts +1 -6
  29. package/package.json +1 -1
  30. package/dist-cjs/commands/CreateProjectionsCategoryCommand.js +0 -21
  31. package/dist-cjs/commands/DeleteProjectionsCategoryCommand.js +0 -21
  32. package/dist-cjs/commands/UpdateProjectionAnalysisSettingsCommand.js +0 -21
  33. package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +0 -21
  34. package/dist-es/commands/CreateProjectionsCategoryCommand.js +0 -17
  35. package/dist-es/commands/DeleteProjectionsCategoryCommand.js +0 -17
  36. package/dist-es/commands/UpdateProjectionAnalysisSettingsCommand.js +0 -17
  37. package/dist-es/commands/UpdateProjectionsCategoryCommand.js +0 -17
  38. package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +0 -81
  39. package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +0 -75
  40. package/dist-types/commands/UpdateProjectionAnalysisSettingsCommand.d.ts +0 -145
  41. package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +0 -83
@@ -75,10 +75,11 @@ export const se_CreateProjectionCommand = async (input, context) => {
75
75
  });
76
76
  let body;
77
77
  body = JSON.stringify(take(input, {
78
- 'categoryId': [],
78
+ 'category': [],
79
79
  'conditions': _ => _json(_),
80
80
  'description': [],
81
81
  'fields': _ => _json(_),
82
+ 'filter': _ => se_ListConversationsFilter(_, context),
82
83
  'group': [],
83
84
  'id': [],
84
85
  'instructions': [],
@@ -91,26 +92,6 @@ export const se_CreateProjectionCommand = async (input, context) => {
91
92
  .b(body);
92
93
  return b.build();
93
94
  };
94
- export const se_CreateProjectionsCategoryCommand = async (input, context) => {
95
- const b = rb(input, context);
96
- const headers = {
97
- 'content-type': 'application/json',
98
- };
99
- b.bp("/v2/insights/projections-categories");
100
- const query = map({
101
- [_c]: [, input[_c]],
102
- });
103
- let body;
104
- body = JSON.stringify(take(input, {
105
- 'id': [],
106
- 'name': [],
107
- }));
108
- b.m("POST")
109
- .h(headers)
110
- .q(query)
111
- .b(body);
112
- return b.build();
113
- };
114
95
  export const se_DeleteDashboardCommand = async (input, context) => {
115
96
  const b = rb(input, context);
116
97
  const headers = {};
@@ -190,21 +171,6 @@ export const se_DeleteProjectionCommand = async (input, context) => {
190
171
  .b(body);
191
172
  return b.build();
192
173
  };
193
- export const se_DeleteProjectionsCategoryCommand = async (input, context) => {
194
- const b = rb(input, context);
195
- const headers = {};
196
- b.bp("/v2/insights/projections-categories/{id}");
197
- b.p('id', () => input.id, '{id}', false);
198
- const query = map({
199
- [_c]: [, input[_c]],
200
- });
201
- let body;
202
- b.m("DELETE")
203
- .h(headers)
204
- .q(query)
205
- .b(body);
206
- return b.build();
207
- };
208
174
  export const se_DisableProjectionCommand = async (input, context) => {
209
175
  const b = rb(input, context);
210
176
  const headers = {};
@@ -719,6 +685,8 @@ export const se_PutAnalysisSettingsCommand = async (input, context) => {
719
685
  let body;
720
686
  body = JSON.stringify(take(input, {
721
687
  'defaultModel': [],
688
+ 'disabled': [],
689
+ 'filter': _ => se_ListConversationsFilter(_, context),
722
690
  }));
723
691
  b.m("PUT")
724
692
  .h(headers)
@@ -936,52 +904,14 @@ export const se_UpdateProjectionCommand = async (input, context) => {
936
904
  });
937
905
  let body;
938
906
  body = JSON.stringify(take(input, {
939
- 'categoryId': [],
907
+ 'category': [],
940
908
  'conditions': _ => _json(_),
941
909
  'description': [],
942
910
  'fields': _ => _json(_),
943
- 'instructions': [],
944
- 'name': [],
945
- }));
946
- b.m("PUT")
947
- .h(headers)
948
- .q(query)
949
- .b(body);
950
- return b.build();
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, {
911
+ 'filter': _ => se_ListConversationsFilter(_, context),
964
912
  'group': [],
913
+ 'instructions': [],
965
914
  'model': [],
966
- }));
967
- b.m("PATCH")
968
- .h(headers)
969
- .q(query)
970
- .b(body);
971
- return b.build();
972
- };
973
- export const se_UpdateProjectionsCategoryCommand = async (input, context) => {
974
- const b = rb(input, context);
975
- const headers = {
976
- 'content-type': 'application/json',
977
- };
978
- b.bp("/v2/insights/projections-categories/{id}");
979
- b.p('id', () => input.id, '{id}', false);
980
- const query = map({
981
- [_c]: [, input[_c]],
982
- });
983
- let body;
984
- body = JSON.stringify(take(input, {
985
915
  'name': [],
986
916
  }));
987
917
  b.m("PUT")
@@ -1062,21 +992,7 @@ export const de_CreateProjectionCommand = async (output, context) => {
1062
992
  });
1063
993
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1064
994
  const doc = take(data, {
1065
- 'projection': _json,
1066
- });
1067
- Object.assign(contents, doc);
1068
- return contents;
1069
- };
1070
- export const de_CreateProjectionsCategoryCommand = async (output, context) => {
1071
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1072
- return de_CommandError(output, context);
1073
- }
1074
- const contents = map({
1075
- $metadata: deserializeMetadata(output),
1076
- });
1077
- const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1078
- const doc = take(data, {
1079
- 'category': _json,
995
+ 'projection': _ => de_Projection(_, context),
1080
996
  });
1081
997
  Object.assign(contents, doc);
1082
998
  return contents;
@@ -1131,16 +1047,6 @@ export const de_DeleteProjectionCommand = async (output, context) => {
1131
1047
  await collectBody(output.body, context);
1132
1048
  return contents;
1133
1049
  };
1134
- export const de_DeleteProjectionsCategoryCommand = async (output, context) => {
1135
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1136
- return de_CommandError(output, context);
1137
- }
1138
- const contents = map({
1139
- $metadata: deserializeMetadata(output),
1140
- });
1141
- await collectBody(output.body, context);
1142
- return contents;
1143
- };
1144
1050
  export const de_DisableProjectionCommand = async (output, context) => {
1145
1051
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1146
1052
  return de_CommandError(output, context);
@@ -1150,7 +1056,7 @@ export const de_DisableProjectionCommand = async (output, context) => {
1150
1056
  });
1151
1057
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1152
1058
  const doc = take(data, {
1153
- 'projection': _json,
1059
+ 'projection': _ => de_Projection(_, context),
1154
1060
  });
1155
1061
  Object.assign(contents, doc);
1156
1062
  return contents;
@@ -1164,7 +1070,7 @@ export const de_EnableProjectionCommand = async (output, context) => {
1164
1070
  });
1165
1071
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1166
1072
  const doc = take(data, {
1167
- 'projection': _json,
1073
+ 'projection': _ => de_Projection(_, context),
1168
1074
  });
1169
1075
  Object.assign(contents, doc);
1170
1076
  return contents;
@@ -1178,7 +1084,7 @@ export const de_GetAnalysisSettingsCommand = async (output, context) => {
1178
1084
  });
1179
1085
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1180
1086
  const doc = take(data, {
1181
- 'settings': _json,
1087
+ 'settings': _ => de_AnalysisSettings(_, context),
1182
1088
  });
1183
1089
  Object.assign(contents, doc);
1184
1090
  return contents;
@@ -1395,7 +1301,7 @@ export const de_GetProjectionCommand = async (output, context) => {
1395
1301
  });
1396
1302
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1397
1303
  const doc = take(data, {
1398
- 'projection': _json,
1304
+ 'projection': _ => de_Projection(_, context),
1399
1305
  });
1400
1306
  Object.assign(contents, doc);
1401
1307
  return contents;
@@ -1556,8 +1462,7 @@ export const de_ListProjectionsCommand = async (output, context) => {
1556
1462
  });
1557
1463
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1558
1464
  const doc = take(data, {
1559
- 'categories': _json,
1560
- 'projections': _json,
1465
+ 'projections': _ => de_ProjectionsList(_, context),
1561
1466
  });
1562
1467
  Object.assign(contents, doc);
1563
1468
  return contents;
@@ -1587,7 +1492,7 @@ export const de_PauseProjectionCommand = async (output, context) => {
1587
1492
  });
1588
1493
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1589
1494
  const doc = take(data, {
1590
- 'projection': _json,
1495
+ 'projection': _ => de_Projection(_, context),
1591
1496
  });
1592
1497
  Object.assign(contents, doc);
1593
1498
  return contents;
@@ -1601,7 +1506,7 @@ export const de_PutAnalysisSettingsCommand = async (output, context) => {
1601
1506
  });
1602
1507
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1603
1508
  const doc = take(data, {
1604
- 'settings': _json,
1509
+ 'settings': _ => de_AnalysisSettings(_, context),
1605
1510
  });
1606
1511
  Object.assign(contents, doc);
1607
1512
  return contents;
@@ -1739,35 +1644,7 @@ export const de_UpdateProjectionCommand = async (output, context) => {
1739
1644
  });
1740
1645
  const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1741
1646
  const doc = take(data, {
1742
- 'projection': _json,
1743
- });
1744
- Object.assign(contents, doc);
1745
- return contents;
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
- };
1761
- export const de_UpdateProjectionsCategoryCommand = async (output, context) => {
1762
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1763
- return de_CommandError(output, context);
1764
- }
1765
- const contents = map({
1766
- $metadata: deserializeMetadata(output),
1767
- });
1768
- const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
1769
- const doc = take(data, {
1770
- 'category': _json,
1647
+ 'projection': _ => de_Projection(_, context),
1771
1648
  });
1772
1649
  Object.assign(contents, doc);
1773
1650
  return contents;
@@ -1988,6 +1865,13 @@ const de_AggregationResult = (output, context) => {
1988
1865
  'buckets': (_) => de_AggregationBucketsList(_, context),
1989
1866
  });
1990
1867
  };
1868
+ const de_AnalysisSettings = (output, context) => {
1869
+ return take(output, {
1870
+ 'defaultModel': __expectString,
1871
+ 'disabled': __expectBoolean,
1872
+ 'filter': (_) => de_ListConversationsFilter(_, context),
1873
+ });
1874
+ };
1991
1875
  const de_Dashboard = (output, context) => {
1992
1876
  return take(output, {
1993
1877
  'access': _json,
@@ -2239,6 +2123,25 @@ const de_PlaylistItemsList = (output, context) => {
2239
2123
  });
2240
2124
  return retVal;
2241
2125
  };
2126
+ const de_Projection = (output, context) => {
2127
+ return take(output, {
2128
+ 'category': __expectString,
2129
+ 'conditions': _json,
2130
+ 'createdAt': __expectString,
2131
+ 'description': __expectString,
2132
+ 'fields': _json,
2133
+ 'filter': (_) => de_ListConversationsFilter(_, context),
2134
+ 'group': __expectString,
2135
+ 'id': __expectString,
2136
+ 'instructions': __expectString,
2137
+ 'metadata': _json,
2138
+ 'model': __expectString,
2139
+ 'name': __expectString,
2140
+ 'status': __expectString,
2141
+ 'updatedAt': __expectString,
2142
+ 'version': __expectInt32,
2143
+ });
2144
+ };
2242
2145
  const de_ProjectionInsights = (output, context) => {
2243
2146
  return take(output, {
2244
2147
  'fields': (_) => de_ProjectionInsightsFieldsList(_, context),
@@ -2268,6 +2171,12 @@ const de_ProjectionInsightsList = (output, context) => {
2268
2171
  });
2269
2172
  return retVal;
2270
2173
  };
2174
+ const de_ProjectionsList = (output, context) => {
2175
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2176
+ return de_Projection(entry, context);
2177
+ });
2178
+ return retVal;
2179
+ };
2271
2180
  const deserializeMetadata = (output) => ({
2272
2181
  httpStatusCode: output.statusCode,
2273
2182
  requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
@@ -3,13 +3,11 @@ import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "./com
3
3
  import { CreateFilterCommandInput, CreateFilterCommandOutput } from "./commands/CreateFilterCommand";
4
4
  import { CreatePlaylistCommandInput, CreatePlaylistCommandOutput } from "./commands/CreatePlaylistCommand";
5
5
  import { CreateProjectionCommandInput, CreateProjectionCommandOutput } from "./commands/CreateProjectionCommand";
6
- import { CreateProjectionsCategoryCommandInput, CreateProjectionsCategoryCommandOutput } from "./commands/CreateProjectionsCategoryCommand";
7
6
  import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./commands/DeleteDashboardCommand";
8
7
  import { DeleteFilterCommandInput, DeleteFilterCommandOutput } from "./commands/DeleteFilterCommand";
9
8
  import { DeletePlaylistCommandInput, DeletePlaylistCommandOutput } from "./commands/DeletePlaylistCommand";
10
9
  import { DeletePlaylistItemCommandInput, DeletePlaylistItemCommandOutput } from "./commands/DeletePlaylistItemCommand";
11
10
  import { DeleteProjectionCommandInput, DeleteProjectionCommandOutput } from "./commands/DeleteProjectionCommand";
12
- import { DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput } from "./commands/DeleteProjectionsCategoryCommand";
13
11
  import { DisableProjectionCommandInput, DisableProjectionCommandOutput } from "./commands/DisableProjectionCommand";
14
12
  import { EnableProjectionCommandInput, EnableProjectionCommandOutput } from "./commands/EnableProjectionCommand";
15
13
  import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "./commands/GetAnalysisSettingsCommand";
@@ -52,9 +50,7 @@ import { UpdateFilterCommandInput, UpdateFilterCommandOutput } from "./commands/
52
50
  import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput } from "./commands/UpdatePinnedDashboardsCommand";
53
51
  import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "./commands/UpdatePlaylistAccessCommand";
54
52
  import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "./commands/UpdatePlaylistCommand";
55
- import { UpdateProjectionAnalysisSettingsCommandInput, UpdateProjectionAnalysisSettingsCommandOutput } from "./commands/UpdateProjectionAnalysisSettingsCommand";
56
53
  import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "./commands/UpdateProjectionCommand";
57
- import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "./commands/UpdateProjectionsCategoryCommand";
58
54
  import { WatchCommandInput, WatchCommandOutput } from "./commands/WatchCommand";
59
55
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
60
56
  export interface WdaInsights {
@@ -82,12 +78,6 @@ export interface WdaInsights {
82
78
  createProjection(args: CreateProjectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectionCommandOutput>;
83
79
  createProjection(args: CreateProjectionCommandInput, cb: (err: any, data?: CreateProjectionCommandOutput) => void): void;
84
80
  createProjection(args: CreateProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectionCommandOutput) => void): void;
85
- /**
86
- * @see {@link CreateProjectionsCategoryCommand}
87
- */
88
- createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectionsCategoryCommandOutput>;
89
- createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, cb: (err: any, data?: CreateProjectionsCategoryCommandOutput) => void): void;
90
- createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectionsCategoryCommandOutput) => void): void;
91
81
  /**
92
82
  * @see {@link DeleteDashboardCommand}
93
83
  */
@@ -118,12 +108,6 @@ export interface WdaInsights {
118
108
  deleteProjection(args: DeleteProjectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectionCommandOutput>;
119
109
  deleteProjection(args: DeleteProjectionCommandInput, cb: (err: any, data?: DeleteProjectionCommandOutput) => void): void;
120
110
  deleteProjection(args: DeleteProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectionCommandOutput) => void): void;
121
- /**
122
- * @see {@link DeleteProjectionsCategoryCommand}
123
- */
124
- deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectionsCategoryCommandOutput>;
125
- deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, cb: (err: any, data?: DeleteProjectionsCategoryCommandOutput) => void): void;
126
- deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectionsCategoryCommandOutput) => void): void;
127
111
  /**
128
112
  * @see {@link DisableProjectionCommand}
129
113
  */
@@ -394,18 +378,6 @@ export interface WdaInsights {
394
378
  updateProjection(args: UpdateProjectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectionCommandOutput>;
395
379
  updateProjection(args: UpdateProjectionCommandInput, cb: (err: any, data?: UpdateProjectionCommandOutput) => void): void;
396
380
  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;
403
- /**
404
- * @see {@link UpdateProjectionsCategoryCommand}
405
- */
406
- updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectionsCategoryCommandOutput>;
407
- updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, cb: (err: any, data?: UpdateProjectionsCategoryCommandOutput) => void): void;
408
- updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectionsCategoryCommandOutput) => void): void;
409
381
  /**
410
382
  * @see {@link WatchCommand}
411
383
  */
@@ -2,13 +2,11 @@ import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "./com
2
2
  import { CreateFilterCommandInput, CreateFilterCommandOutput } from "./commands/CreateFilterCommand";
3
3
  import { CreatePlaylistCommandInput, CreatePlaylistCommandOutput } from "./commands/CreatePlaylistCommand";
4
4
  import { CreateProjectionCommandInput, CreateProjectionCommandOutput } from "./commands/CreateProjectionCommand";
5
- import { CreateProjectionsCategoryCommandInput, CreateProjectionsCategoryCommandOutput } from "./commands/CreateProjectionsCategoryCommand";
6
5
  import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./commands/DeleteDashboardCommand";
7
6
  import { DeleteFilterCommandInput, DeleteFilterCommandOutput } from "./commands/DeleteFilterCommand";
8
7
  import { DeletePlaylistCommandInput, DeletePlaylistCommandOutput } from "./commands/DeletePlaylistCommand";
9
8
  import { DeletePlaylistItemCommandInput, DeletePlaylistItemCommandOutput } from "./commands/DeletePlaylistItemCommand";
10
9
  import { DeleteProjectionCommandInput, DeleteProjectionCommandOutput } from "./commands/DeleteProjectionCommand";
11
- import { DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput } from "./commands/DeleteProjectionsCategoryCommand";
12
10
  import { DisableProjectionCommandInput, DisableProjectionCommandOutput } from "./commands/DisableProjectionCommand";
13
11
  import { EnableProjectionCommandInput, EnableProjectionCommandOutput } from "./commands/EnableProjectionCommand";
14
12
  import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "./commands/GetAnalysisSettingsCommand";
@@ -51,9 +49,7 @@ import { UpdateFilterCommandInput, UpdateFilterCommandOutput } from "./commands/
51
49
  import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput } from "./commands/UpdatePinnedDashboardsCommand";
52
50
  import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "./commands/UpdatePlaylistAccessCommand";
53
51
  import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "./commands/UpdatePlaylistCommand";
54
- import { UpdateProjectionAnalysisSettingsCommandInput, UpdateProjectionAnalysisSettingsCommandOutput } from "./commands/UpdateProjectionAnalysisSettingsCommand";
55
52
  import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "./commands/UpdateProjectionCommand";
56
- import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "./commands/UpdateProjectionsCategoryCommand";
57
53
  import { WatchCommandInput, WatchCommandOutput } from "./commands/WatchCommand";
58
54
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
59
55
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
@@ -66,11 +62,11 @@ export { __Client };
66
62
  /**
67
63
  * @public
68
64
  */
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;
65
+ export type ServiceInputTypes = CreateDashboardCommandInput | CreateFilterCommandInput | CreatePlaylistCommandInput | CreateProjectionCommandInput | DeleteDashboardCommandInput | DeleteFilterCommandInput | DeletePlaylistCommandInput | DeletePlaylistItemCommandInput | DeleteProjectionCommandInput | 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 | UpdateProjectionCommandInput | WatchCommandInput;
70
66
  /**
71
67
  * @public
72
68
  */
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;
69
+ export type ServiceOutputTypes = CreateDashboardCommandOutput | CreateFilterCommandOutput | CreatePlaylistCommandOutput | CreateProjectionCommandOutput | DeleteDashboardCommandOutput | DeleteFilterCommandOutput | DeletePlaylistCommandOutput | DeletePlaylistItemCommandOutput | DeleteProjectionCommandOutput | 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 | UpdateProjectionCommandOutput | WatchCommandOutput;
74
70
  /**
75
71
  * @public
76
72
  */