@wildix/wda-insights-client 1.1.39 → 1.1.41
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.
- package/dist-cjs/WdaInsights.js +4 -0
- package/dist-cjs/commands/GetAnalysisSettingsCommand.js +21 -0
- package/dist-cjs/commands/PutAnalysisSettingsCommand.js +21 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +2 -5
- package/dist-cjs/protocols/Aws_restJson1.js +118 -12
- package/dist-es/WdaInsights.js +4 -0
- package/dist-es/commands/GetAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/PutAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +0 -3
- package/dist-es/protocols/Aws_restJson1.js +111 -9
- package/dist-types/WdaInsights.d.ts +16 -0
- package/dist-types/WdaInsightsClient.d.ts +4 -2
- package/dist-types/commands/CreateProjectionCommand.d.ts +368 -10
- package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +3 -1
- package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +3 -1
- package/dist-types/commands/DisableProjectionCommand.d.ts +184 -5
- package/dist-types/commands/EnableProjectionCommand.d.ts +184 -5
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +256 -0
- package/dist-types/commands/GetProjectionCommand.d.ts +184 -5
- package/dist-types/commands/ListProjectionsCommand.d.ts +186 -7
- package/dist-types/commands/PauseProjectionCommand.d.ts +184 -5
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +435 -0
- package/dist-types/commands/UpdateProjectionCommand.d.ts +368 -10
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +3 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +176 -25
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/package.json +1 -1
|
@@ -75,13 +75,16 @@ export const se_CreateProjectionCommand = async (input, context) => {
|
|
|
75
75
|
});
|
|
76
76
|
let body;
|
|
77
77
|
body = JSON.stringify(take(input, {
|
|
78
|
+
'category': [],
|
|
78
79
|
'categoryId': [],
|
|
79
80
|
'conditions': _ => _json(_),
|
|
80
81
|
'description': [],
|
|
81
82
|
'fields': _ => _json(_),
|
|
83
|
+
'filter': _ => se_ListConversationsFilter(_, context),
|
|
84
|
+
'group': [],
|
|
82
85
|
'id': [],
|
|
83
86
|
'instructions': [],
|
|
84
|
-
'model':
|
|
87
|
+
'model': [],
|
|
85
88
|
'name': [],
|
|
86
89
|
}));
|
|
87
90
|
b.m("POST")
|
|
@@ -234,6 +237,20 @@ export const se_EnableProjectionCommand = async (input, context) => {
|
|
|
234
237
|
.b(body);
|
|
235
238
|
return b.build();
|
|
236
239
|
};
|
|
240
|
+
export const se_GetAnalysisSettingsCommand = async (input, context) => {
|
|
241
|
+
const b = rb(input, context);
|
|
242
|
+
const headers = {};
|
|
243
|
+
b.bp("/v2/insights/analysis/settings");
|
|
244
|
+
const query = map({
|
|
245
|
+
[_c]: [, input[_c]],
|
|
246
|
+
});
|
|
247
|
+
let body;
|
|
248
|
+
b.m("GET")
|
|
249
|
+
.h(headers)
|
|
250
|
+
.q(query)
|
|
251
|
+
.b(body);
|
|
252
|
+
return b.build();
|
|
253
|
+
};
|
|
237
254
|
export const se_GetCallCharacteristicsCommand = async (input, context) => {
|
|
238
255
|
const b = rb(input, context);
|
|
239
256
|
const headers = {};
|
|
@@ -692,6 +709,27 @@ export const se_PauseProjectionCommand = async (input, context) => {
|
|
|
692
709
|
.b(body);
|
|
693
710
|
return b.build();
|
|
694
711
|
};
|
|
712
|
+
export const se_PutAnalysisSettingsCommand = async (input, context) => {
|
|
713
|
+
const b = rb(input, context);
|
|
714
|
+
const headers = {
|
|
715
|
+
'content-type': 'application/json',
|
|
716
|
+
};
|
|
717
|
+
b.bp("/v2/insights/analysis/settings");
|
|
718
|
+
const query = map({
|
|
719
|
+
[_c]: [, input[_c]],
|
|
720
|
+
});
|
|
721
|
+
let body;
|
|
722
|
+
body = JSON.stringify(take(input, {
|
|
723
|
+
'defaultModel': [],
|
|
724
|
+
'disabled': [],
|
|
725
|
+
'filter': _ => se_ListConversationsFilter(_, context),
|
|
726
|
+
}));
|
|
727
|
+
b.m("PUT")
|
|
728
|
+
.h(headers)
|
|
729
|
+
.q(query)
|
|
730
|
+
.b(body);
|
|
731
|
+
return b.build();
|
|
732
|
+
};
|
|
695
733
|
export const se_PutPlaylistItemCommand = async (input, context) => {
|
|
696
734
|
const b = rb(input, context);
|
|
697
735
|
const headers = {
|
|
@@ -902,12 +940,15 @@ export const se_UpdateProjectionCommand = async (input, context) => {
|
|
|
902
940
|
});
|
|
903
941
|
let body;
|
|
904
942
|
body = JSON.stringify(take(input, {
|
|
943
|
+
'category': [],
|
|
905
944
|
'categoryId': [],
|
|
906
945
|
'conditions': _ => _json(_),
|
|
907
946
|
'description': [],
|
|
908
947
|
'fields': _ => _json(_),
|
|
948
|
+
'filter': _ => se_ListConversationsFilter(_, context),
|
|
949
|
+
'group': [],
|
|
909
950
|
'instructions': [],
|
|
910
|
-
'model':
|
|
951
|
+
'model': [],
|
|
911
952
|
'name': [],
|
|
912
953
|
}));
|
|
913
954
|
b.m("PUT")
|
|
@@ -1008,7 +1049,7 @@ export const de_CreateProjectionCommand = async (output, context) => {
|
|
|
1008
1049
|
});
|
|
1009
1050
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1010
1051
|
const doc = take(data, {
|
|
1011
|
-
'projection':
|
|
1052
|
+
'projection': _ => de_Projection(_, context),
|
|
1012
1053
|
});
|
|
1013
1054
|
Object.assign(contents, doc);
|
|
1014
1055
|
return contents;
|
|
@@ -1096,7 +1137,7 @@ export const de_DisableProjectionCommand = async (output, context) => {
|
|
|
1096
1137
|
});
|
|
1097
1138
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1098
1139
|
const doc = take(data, {
|
|
1099
|
-
'projection':
|
|
1140
|
+
'projection': _ => de_Projection(_, context),
|
|
1100
1141
|
});
|
|
1101
1142
|
Object.assign(contents, doc);
|
|
1102
1143
|
return contents;
|
|
@@ -1110,7 +1151,21 @@ export const de_EnableProjectionCommand = async (output, context) => {
|
|
|
1110
1151
|
});
|
|
1111
1152
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1112
1153
|
const doc = take(data, {
|
|
1113
|
-
'projection':
|
|
1154
|
+
'projection': _ => de_Projection(_, context),
|
|
1155
|
+
});
|
|
1156
|
+
Object.assign(contents, doc);
|
|
1157
|
+
return contents;
|
|
1158
|
+
};
|
|
1159
|
+
export const de_GetAnalysisSettingsCommand = async (output, context) => {
|
|
1160
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1161
|
+
return de_CommandError(output, context);
|
|
1162
|
+
}
|
|
1163
|
+
const contents = map({
|
|
1164
|
+
$metadata: deserializeMetadata(output),
|
|
1165
|
+
});
|
|
1166
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1167
|
+
const doc = take(data, {
|
|
1168
|
+
'settings': _ => de_AnalysisSettings(_, context),
|
|
1114
1169
|
});
|
|
1115
1170
|
Object.assign(contents, doc);
|
|
1116
1171
|
return contents;
|
|
@@ -1327,7 +1382,7 @@ export const de_GetProjectionCommand = async (output, context) => {
|
|
|
1327
1382
|
});
|
|
1328
1383
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1329
1384
|
const doc = take(data, {
|
|
1330
|
-
'projection':
|
|
1385
|
+
'projection': _ => de_Projection(_, context),
|
|
1331
1386
|
});
|
|
1332
1387
|
Object.assign(contents, doc);
|
|
1333
1388
|
return contents;
|
|
@@ -1489,7 +1544,7 @@ export const de_ListProjectionsCommand = async (output, context) => {
|
|
|
1489
1544
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1490
1545
|
const doc = take(data, {
|
|
1491
1546
|
'categories': _json,
|
|
1492
|
-
'projections':
|
|
1547
|
+
'projections': _ => de_ProjectionsList(_, context),
|
|
1493
1548
|
});
|
|
1494
1549
|
Object.assign(contents, doc);
|
|
1495
1550
|
return contents;
|
|
@@ -1519,7 +1574,21 @@ export const de_PauseProjectionCommand = async (output, context) => {
|
|
|
1519
1574
|
});
|
|
1520
1575
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1521
1576
|
const doc = take(data, {
|
|
1522
|
-
'projection':
|
|
1577
|
+
'projection': _ => de_Projection(_, context),
|
|
1578
|
+
});
|
|
1579
|
+
Object.assign(contents, doc);
|
|
1580
|
+
return contents;
|
|
1581
|
+
};
|
|
1582
|
+
export const de_PutAnalysisSettingsCommand = async (output, context) => {
|
|
1583
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1584
|
+
return de_CommandError(output, context);
|
|
1585
|
+
}
|
|
1586
|
+
const contents = map({
|
|
1587
|
+
$metadata: deserializeMetadata(output),
|
|
1588
|
+
});
|
|
1589
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1590
|
+
const doc = take(data, {
|
|
1591
|
+
'settings': _ => de_AnalysisSettings(_, context),
|
|
1523
1592
|
});
|
|
1524
1593
|
Object.assign(contents, doc);
|
|
1525
1594
|
return contents;
|
|
@@ -1657,7 +1726,7 @@ export const de_UpdateProjectionCommand = async (output, context) => {
|
|
|
1657
1726
|
});
|
|
1658
1727
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1659
1728
|
const doc = take(data, {
|
|
1660
|
-
'projection':
|
|
1729
|
+
'projection': _ => de_Projection(_, context),
|
|
1661
1730
|
});
|
|
1662
1731
|
Object.assign(contents, doc);
|
|
1663
1732
|
return contents;
|
|
@@ -1892,6 +1961,13 @@ const de_AggregationResult = (output, context) => {
|
|
|
1892
1961
|
'buckets': (_) => de_AggregationBucketsList(_, context),
|
|
1893
1962
|
});
|
|
1894
1963
|
};
|
|
1964
|
+
const de_AnalysisSettings = (output, context) => {
|
|
1965
|
+
return take(output, {
|
|
1966
|
+
'defaultModel': __expectString,
|
|
1967
|
+
'disabled': __expectBoolean,
|
|
1968
|
+
'filter': (_) => de_ListConversationsFilter(_, context),
|
|
1969
|
+
});
|
|
1970
|
+
};
|
|
1895
1971
|
const de_Dashboard = (output, context) => {
|
|
1896
1972
|
return take(output, {
|
|
1897
1973
|
'access': _json,
|
|
@@ -2143,6 +2219,26 @@ const de_PlaylistItemsList = (output, context) => {
|
|
|
2143
2219
|
});
|
|
2144
2220
|
return retVal;
|
|
2145
2221
|
};
|
|
2222
|
+
const de_Projection = (output, context) => {
|
|
2223
|
+
return take(output, {
|
|
2224
|
+
'category': __expectString,
|
|
2225
|
+
'categoryId': __expectString,
|
|
2226
|
+
'conditions': _json,
|
|
2227
|
+
'createdAt': __expectString,
|
|
2228
|
+
'description': __expectString,
|
|
2229
|
+
'fields': _json,
|
|
2230
|
+
'filter': (_) => de_ListConversationsFilter(_, context),
|
|
2231
|
+
'group': __expectString,
|
|
2232
|
+
'id': __expectString,
|
|
2233
|
+
'instructions': __expectString,
|
|
2234
|
+
'metadata': _json,
|
|
2235
|
+
'model': __expectString,
|
|
2236
|
+
'name': __expectString,
|
|
2237
|
+
'status': __expectString,
|
|
2238
|
+
'updatedAt': __expectString,
|
|
2239
|
+
'version': __expectInt32,
|
|
2240
|
+
});
|
|
2241
|
+
};
|
|
2146
2242
|
const de_ProjectionInsights = (output, context) => {
|
|
2147
2243
|
return take(output, {
|
|
2148
2244
|
'fields': (_) => de_ProjectionInsightsFieldsList(_, context),
|
|
@@ -2172,6 +2268,12 @@ const de_ProjectionInsightsList = (output, context) => {
|
|
|
2172
2268
|
});
|
|
2173
2269
|
return retVal;
|
|
2174
2270
|
};
|
|
2271
|
+
const de_ProjectionsList = (output, context) => {
|
|
2272
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2273
|
+
return de_Projection(entry, context);
|
|
2274
|
+
});
|
|
2275
|
+
return retVal;
|
|
2276
|
+
};
|
|
2175
2277
|
const deserializeMetadata = (output) => ({
|
|
2176
2278
|
httpStatusCode: output.statusCode,
|
|
2177
2279
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -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";
|
|
@@ -133,6 +135,13 @@ export interface WdaInsights {
|
|
|
133
135
|
enableProjection(args: EnableProjectionCommandInput, options?: __HttpHandlerOptions): Promise<EnableProjectionCommandOutput>;
|
|
134
136
|
enableProjection(args: EnableProjectionCommandInput, cb: (err: any, data?: EnableProjectionCommandOutput) => void): void;
|
|
135
137
|
enableProjection(args: EnableProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableProjectionCommandOutput) => void): void;
|
|
138
|
+
/**
|
|
139
|
+
* @see {@link GetAnalysisSettingsCommand}
|
|
140
|
+
*/
|
|
141
|
+
getAnalysisSettings(): Promise<GetAnalysisSettingsCommandOutput>;
|
|
142
|
+
getAnalysisSettings(args: GetAnalysisSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAnalysisSettingsCommandOutput>;
|
|
143
|
+
getAnalysisSettings(args: GetAnalysisSettingsCommandInput, cb: (err: any, data?: GetAnalysisSettingsCommandOutput) => void): void;
|
|
144
|
+
getAnalysisSettings(args: GetAnalysisSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnalysisSettingsCommandOutput) => void): void;
|
|
136
145
|
/**
|
|
137
146
|
* @see {@link GetCallCharacteristicsCommand}
|
|
138
147
|
*/
|
|
@@ -310,6 +319,13 @@ export interface WdaInsights {
|
|
|
310
319
|
pauseProjection(args: PauseProjectionCommandInput, options?: __HttpHandlerOptions): Promise<PauseProjectionCommandOutput>;
|
|
311
320
|
pauseProjection(args: PauseProjectionCommandInput, cb: (err: any, data?: PauseProjectionCommandOutput) => void): void;
|
|
312
321
|
pauseProjection(args: PauseProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseProjectionCommandOutput) => void): void;
|
|
322
|
+
/**
|
|
323
|
+
* @see {@link PutAnalysisSettingsCommand}
|
|
324
|
+
*/
|
|
325
|
+
putAnalysisSettings(): Promise<PutAnalysisSettingsCommandOutput>;
|
|
326
|
+
putAnalysisSettings(args: PutAnalysisSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutAnalysisSettingsCommandOutput>;
|
|
327
|
+
putAnalysisSettings(args: PutAnalysisSettingsCommandInput, cb: (err: any, data?: PutAnalysisSettingsCommandOutput) => void): void;
|
|
328
|
+
putAnalysisSettings(args: PutAnalysisSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAnalysisSettingsCommandOutput) => void): void;
|
|
313
329
|
/**
|
|
314
330
|
* @see {@link PutPlaylistItemCommand}
|
|
315
331
|
*/
|
|
@@ -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";
|
|
@@ -63,11 +65,11 @@ export { __Client };
|
|
|
63
65
|
/**
|
|
64
66
|
* @public
|
|
65
67
|
*/
|
|
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;
|
|
68
|
+
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 | UpdateProjectionCommandInput | UpdateProjectionsCategoryCommandInput | WatchCommandInput;
|
|
67
69
|
/**
|
|
68
70
|
* @public
|
|
69
71
|
*/
|
|
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;
|
|
72
|
+
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 | UpdateProjectionCommandOutput | UpdateProjectionsCategoryCommandOutput | WatchCommandOutput;
|
|
71
73
|
/**
|
|
72
74
|
* @public
|
|
73
75
|
*/
|