@wildix/wda-insights-client 1.1.36 → 1.1.39
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 +0 -4
- package/dist-cjs/commands/index.js +0 -2
- package/dist-cjs/models/models_0.js +10 -10
- package/dist-cjs/protocols/Aws_restJson1.js +12 -118
- package/dist-es/WdaInsights.js +0 -4
- package/dist-es/commands/index.js +0 -2
- package/dist-es/models/models_0.js +8 -8
- package/dist-es/protocols/Aws_restJson1.js +9 -111
- package/dist-types/WdaInsights.d.ts +0 -16
- package/dist-types/WdaInsightsClient.d.ts +2 -4
- package/dist-types/commands/CreateProjectionCommand.d.ts +10 -368
- package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/DisableProjectionCommand.d.ts +5 -184
- package/dist-types/commands/EnableProjectionCommand.d.ts +5 -184
- package/dist-types/commands/GetProjectionCommand.d.ts +5 -184
- package/dist-types/commands/ListConversationsCommand.d.ts +33 -22
- package/dist-types/commands/ListPlaylistItemsCommand.d.ts +33 -22
- package/dist-types/commands/ListProjectionsCommand.d.ts +7 -186
- package/dist-types/commands/ListWatchHistoryCommand.d.ts +33 -22
- package/dist-types/commands/PauseProjectionCommand.d.ts +5 -184
- package/dist-types/commands/UpdateProjectionCommand.d.ts +10 -368
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/index.d.ts +0 -2
- package/dist-types/models/models_0.d.ts +47 -233
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -18
- package/dist-types/runtimeConfig.browser.d.ts +6 -1
- package/dist-types/runtimeConfig.d.ts +6 -1
- package/dist-types/runtimeConfig.native.d.ts +6 -1
- package/package.json +1 -1
- package/dist-cjs/commands/GetAnalysisSettingsCommand.js +0 -21
- package/dist-cjs/commands/PutAnalysisSettingsCommand.js +0 -21
- package/dist-es/commands/GetAnalysisSettingsCommand.js +0 -17
- package/dist-es/commands/PutAnalysisSettingsCommand.js +0 -17
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +0 -256
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +0 -435
|
@@ -75,16 +75,13 @@ export const se_CreateProjectionCommand = async (input, context) => {
|
|
|
75
75
|
});
|
|
76
76
|
let body;
|
|
77
77
|
body = JSON.stringify(take(input, {
|
|
78
|
-
'category': [],
|
|
79
78
|
'categoryId': [],
|
|
80
79
|
'conditions': _ => _json(_),
|
|
81
80
|
'description': [],
|
|
82
81
|
'fields': _ => _json(_),
|
|
83
|
-
'filter': _ => se_ListConversationsFilter(_, context),
|
|
84
|
-
'group': [],
|
|
85
82
|
'id': [],
|
|
86
83
|
'instructions': [],
|
|
87
|
-
'model':
|
|
84
|
+
'model': _ => _json(_),
|
|
88
85
|
'name': [],
|
|
89
86
|
}));
|
|
90
87
|
b.m("POST")
|
|
@@ -237,20 +234,6 @@ export const se_EnableProjectionCommand = async (input, context) => {
|
|
|
237
234
|
.b(body);
|
|
238
235
|
return b.build();
|
|
239
236
|
};
|
|
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
|
-
};
|
|
254
237
|
export const se_GetCallCharacteristicsCommand = async (input, context) => {
|
|
255
238
|
const b = rb(input, context);
|
|
256
239
|
const headers = {};
|
|
@@ -709,27 +692,6 @@ export const se_PauseProjectionCommand = async (input, context) => {
|
|
|
709
692
|
.b(body);
|
|
710
693
|
return b.build();
|
|
711
694
|
};
|
|
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
|
-
};
|
|
733
695
|
export const se_PutPlaylistItemCommand = async (input, context) => {
|
|
734
696
|
const b = rb(input, context);
|
|
735
697
|
const headers = {
|
|
@@ -940,15 +902,12 @@ export const se_UpdateProjectionCommand = async (input, context) => {
|
|
|
940
902
|
});
|
|
941
903
|
let body;
|
|
942
904
|
body = JSON.stringify(take(input, {
|
|
943
|
-
'category': [],
|
|
944
905
|
'categoryId': [],
|
|
945
906
|
'conditions': _ => _json(_),
|
|
946
907
|
'description': [],
|
|
947
908
|
'fields': _ => _json(_),
|
|
948
|
-
'filter': _ => se_ListConversationsFilter(_, context),
|
|
949
|
-
'group': [],
|
|
950
909
|
'instructions': [],
|
|
951
|
-
'model':
|
|
910
|
+
'model': _ => _json(_),
|
|
952
911
|
'name': [],
|
|
953
912
|
}));
|
|
954
913
|
b.m("PUT")
|
|
@@ -1049,7 +1008,7 @@ export const de_CreateProjectionCommand = async (output, context) => {
|
|
|
1049
1008
|
});
|
|
1050
1009
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1051
1010
|
const doc = take(data, {
|
|
1052
|
-
'projection':
|
|
1011
|
+
'projection': _json,
|
|
1053
1012
|
});
|
|
1054
1013
|
Object.assign(contents, doc);
|
|
1055
1014
|
return contents;
|
|
@@ -1137,7 +1096,7 @@ export const de_DisableProjectionCommand = async (output, context) => {
|
|
|
1137
1096
|
});
|
|
1138
1097
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1139
1098
|
const doc = take(data, {
|
|
1140
|
-
'projection':
|
|
1099
|
+
'projection': _json,
|
|
1141
1100
|
});
|
|
1142
1101
|
Object.assign(contents, doc);
|
|
1143
1102
|
return contents;
|
|
@@ -1151,21 +1110,7 @@ export const de_EnableProjectionCommand = async (output, context) => {
|
|
|
1151
1110
|
});
|
|
1152
1111
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1153
1112
|
const doc = take(data, {
|
|
1154
|
-
'projection':
|
|
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),
|
|
1113
|
+
'projection': _json,
|
|
1169
1114
|
});
|
|
1170
1115
|
Object.assign(contents, doc);
|
|
1171
1116
|
return contents;
|
|
@@ -1382,7 +1327,7 @@ export const de_GetProjectionCommand = async (output, context) => {
|
|
|
1382
1327
|
});
|
|
1383
1328
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1384
1329
|
const doc = take(data, {
|
|
1385
|
-
'projection':
|
|
1330
|
+
'projection': _json,
|
|
1386
1331
|
});
|
|
1387
1332
|
Object.assign(contents, doc);
|
|
1388
1333
|
return contents;
|
|
@@ -1544,7 +1489,7 @@ export const de_ListProjectionsCommand = async (output, context) => {
|
|
|
1544
1489
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1545
1490
|
const doc = take(data, {
|
|
1546
1491
|
'categories': _json,
|
|
1547
|
-
'projections':
|
|
1492
|
+
'projections': _json,
|
|
1548
1493
|
});
|
|
1549
1494
|
Object.assign(contents, doc);
|
|
1550
1495
|
return contents;
|
|
@@ -1574,21 +1519,7 @@ export const de_PauseProjectionCommand = async (output, context) => {
|
|
|
1574
1519
|
});
|
|
1575
1520
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1576
1521
|
const doc = take(data, {
|
|
1577
|
-
'projection':
|
|
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),
|
|
1522
|
+
'projection': _json,
|
|
1592
1523
|
});
|
|
1593
1524
|
Object.assign(contents, doc);
|
|
1594
1525
|
return contents;
|
|
@@ -1726,7 +1657,7 @@ export const de_UpdateProjectionCommand = async (output, context) => {
|
|
|
1726
1657
|
});
|
|
1727
1658
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1728
1659
|
const doc = take(data, {
|
|
1729
|
-
'projection':
|
|
1660
|
+
'projection': _json,
|
|
1730
1661
|
});
|
|
1731
1662
|
Object.assign(contents, doc);
|
|
1732
1663
|
return contents;
|
|
@@ -1961,13 +1892,6 @@ const de_AggregationResult = (output, context) => {
|
|
|
1961
1892
|
'buckets': (_) => de_AggregationBucketsList(_, context),
|
|
1962
1893
|
});
|
|
1963
1894
|
};
|
|
1964
|
-
const de_AnalysisSettings = (output, context) => {
|
|
1965
|
-
return take(output, {
|
|
1966
|
-
'defaultModel': __expectString,
|
|
1967
|
-
'disabled': __expectBoolean,
|
|
1968
|
-
'filter': (_) => de_ListConversationsFilter(_, context),
|
|
1969
|
-
});
|
|
1970
|
-
};
|
|
1971
1895
|
const de_Dashboard = (output, context) => {
|
|
1972
1896
|
return take(output, {
|
|
1973
1897
|
'access': _json,
|
|
@@ -2219,26 +2143,6 @@ const de_PlaylistItemsList = (output, context) => {
|
|
|
2219
2143
|
});
|
|
2220
2144
|
return retVal;
|
|
2221
2145
|
};
|
|
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
|
-
};
|
|
2242
2146
|
const de_ProjectionInsights = (output, context) => {
|
|
2243
2147
|
return take(output, {
|
|
2244
2148
|
'fields': (_) => de_ProjectionInsightsFieldsList(_, context),
|
|
@@ -2268,12 +2172,6 @@ const de_ProjectionInsightsList = (output, context) => {
|
|
|
2268
2172
|
});
|
|
2269
2173
|
return retVal;
|
|
2270
2174
|
};
|
|
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
|
-
};
|
|
2277
2175
|
const deserializeMetadata = (output) => ({
|
|
2278
2176
|
httpStatusCode: output.statusCode,
|
|
2279
2177
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -12,7 +12,6 @@ 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";
|
|
16
15
|
import { GetCallCharacteristicsCommandInput, GetCallCharacteristicsCommandOutput } from "./commands/GetCallCharacteristicsCommand";
|
|
17
16
|
import { GetCallInsightsCommandInput, GetCallInsightsCommandOutput } from "./commands/GetCallInsightsCommand";
|
|
18
17
|
import { GetCallStateCommandInput, GetCallStateCommandOutput } from "./commands/GetCallStateCommand";
|
|
@@ -41,7 +40,6 @@ import { ListPlaylistsCommandInput, ListPlaylistsCommandOutput } from "./command
|
|
|
41
40
|
import { ListProjectionsCommandInput, ListProjectionsCommandOutput } from "./commands/ListProjectionsCommand";
|
|
42
41
|
import { ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput } from "./commands/ListWatchHistoryCommand";
|
|
43
42
|
import { PauseProjectionCommandInput, PauseProjectionCommandOutput } from "./commands/PauseProjectionCommand";
|
|
44
|
-
import { PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput } from "./commands/PutAnalysisSettingsCommand";
|
|
45
43
|
import { PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput } from "./commands/PutPlaylistItemCommand";
|
|
46
44
|
import { QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput } from "./commands/QueryConversationsCountCommand";
|
|
47
45
|
import { ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput } from "./commands/ScheduleCallSummaryGenerationCommand";
|
|
@@ -135,13 +133,6 @@ export interface WdaInsights {
|
|
|
135
133
|
enableProjection(args: EnableProjectionCommandInput, options?: __HttpHandlerOptions): Promise<EnableProjectionCommandOutput>;
|
|
136
134
|
enableProjection(args: EnableProjectionCommandInput, cb: (err: any, data?: EnableProjectionCommandOutput) => void): void;
|
|
137
135
|
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;
|
|
145
136
|
/**
|
|
146
137
|
* @see {@link GetCallCharacteristicsCommand}
|
|
147
138
|
*/
|
|
@@ -319,13 +310,6 @@ export interface WdaInsights {
|
|
|
319
310
|
pauseProjection(args: PauseProjectionCommandInput, options?: __HttpHandlerOptions): Promise<PauseProjectionCommandOutput>;
|
|
320
311
|
pauseProjection(args: PauseProjectionCommandInput, cb: (err: any, data?: PauseProjectionCommandOutput) => void): void;
|
|
321
312
|
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;
|
|
329
313
|
/**
|
|
330
314
|
* @see {@link PutPlaylistItemCommand}
|
|
331
315
|
*/
|
|
@@ -11,7 +11,6 @@ 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";
|
|
15
14
|
import { GetCallCharacteristicsCommandInput, GetCallCharacteristicsCommandOutput } from "./commands/GetCallCharacteristicsCommand";
|
|
16
15
|
import { GetCallInsightsCommandInput, GetCallInsightsCommandOutput } from "./commands/GetCallInsightsCommand";
|
|
17
16
|
import { GetCallStateCommandInput, GetCallStateCommandOutput } from "./commands/GetCallStateCommand";
|
|
@@ -40,7 +39,6 @@ import { ListPlaylistsCommandInput, ListPlaylistsCommandOutput } from "./command
|
|
|
40
39
|
import { ListProjectionsCommandInput, ListProjectionsCommandOutput } from "./commands/ListProjectionsCommand";
|
|
41
40
|
import { ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput } from "./commands/ListWatchHistoryCommand";
|
|
42
41
|
import { PauseProjectionCommandInput, PauseProjectionCommandOutput } from "./commands/PauseProjectionCommand";
|
|
43
|
-
import { PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput } from "./commands/PutAnalysisSettingsCommand";
|
|
44
42
|
import { PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput } from "./commands/PutPlaylistItemCommand";
|
|
45
43
|
import { QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput } from "./commands/QueryConversationsCountCommand";
|
|
46
44
|
import { ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput } from "./commands/ScheduleCallSummaryGenerationCommand";
|
|
@@ -65,11 +63,11 @@ export { __Client };
|
|
|
65
63
|
/**
|
|
66
64
|
* @public
|
|
67
65
|
*/
|
|
68
|
-
export type ServiceInputTypes = CreateDashboardCommandInput | CreateFilterCommandInput | CreatePlaylistCommandInput | CreateProjectionCommandInput | CreateProjectionsCategoryCommandInput | DeleteDashboardCommandInput | DeleteFilterCommandInput | DeletePlaylistCommandInput | DeletePlaylistItemCommandInput | DeleteProjectionCommandInput | DeleteProjectionsCategoryCommandInput | DisableProjectionCommandInput | EnableProjectionCommandInput |
|
|
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
67
|
/**
|
|
70
68
|
* @public
|
|
71
69
|
*/
|
|
72
|
-
export type ServiceOutputTypes = CreateDashboardCommandOutput | CreateFilterCommandOutput | CreatePlaylistCommandOutput | CreateProjectionCommandOutput | CreateProjectionsCategoryCommandOutput | DeleteDashboardCommandOutput | DeleteFilterCommandOutput | DeletePlaylistCommandOutput | DeletePlaylistItemCommandOutput | DeleteProjectionCommandOutput | DeleteProjectionsCategoryCommandOutput | DisableProjectionCommandOutput | EnableProjectionCommandOutput |
|
|
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
71
|
/**
|
|
74
72
|
* @public
|
|
75
73
|
*/
|