@wildix/wda-insights-client 1.1.30 → 1.1.32
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 -6
- package/dist-cjs/commands/{CreateProjectionsCategoryCommand.js → GetAnalysisSettingsCommand.js} +7 -7
- package/dist-cjs/commands/{DeleteProjectionsCategoryCommand.js → PutAnalysisSettingsCommand.js} +7 -7
- package/dist-cjs/commands/index.js +2 -3
- package/dist-cjs/models/models_0.js +2 -5
- package/dist-cjs/protocols/Aws_restJson1.js +109 -106
- package/dist-es/WdaInsights.js +4 -6
- package/dist-es/commands/GetAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/PutAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/index.js +2 -3
- package/dist-es/models/models_0.js +0 -3
- package/dist-es/protocols/Aws_restJson1.js +98 -93
- package/dist-types/WdaInsights.d.ts +16 -21
- package/dist-types/WdaInsightsClient.d.ts +4 -5
- package/dist-types/commands/CreateProjectionCommand.d.ts +366 -10
- package/dist-types/commands/DisableProjectionCommand.d.ts +183 -5
- package/dist-types/commands/EnableProjectionCommand.d.ts +183 -5
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +256 -0
- package/dist-types/commands/GetProjectionCommand.d.ts +183 -5
- package/dist-types/commands/ListProjectionsCommand.d.ts +184 -12
- package/dist-types/commands/PauseProjectionCommand.d.ts +183 -5
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +435 -0
- package/dist-types/commands/UpdateProjectionCommand.d.ts +366 -10
- package/dist-types/commands/index.d.ts +2 -3
- package/dist-types/models/models_0.d.ts +150 -84
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -27
- package/dist-types/runtimeConfig.browser.d.ts +1 -6
- package/dist-types/runtimeConfig.d.ts +1 -6
- package/dist-types/runtimeConfig.native.d.ts +1 -6
- package/package.json +1 -1
- package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +0 -21
- package/dist-es/commands/CreateProjectionsCategoryCommand.js +0 -17
- package/dist-es/commands/DeleteProjectionsCategoryCommand.js +0 -17
- package/dist-es/commands/UpdateProjectionsCategoryCommand.js +0 -17
- package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +0 -81
- package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +0 -75
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +0 -83
package/dist-es/WdaInsights.js
CHANGED
|
@@ -3,15 +3,14 @@ import { CreateDashboardCommand, } from "./commands/CreateDashboardCommand";
|
|
|
3
3
|
import { CreateFilterCommand, } from "./commands/CreateFilterCommand";
|
|
4
4
|
import { CreatePlaylistCommand, } from "./commands/CreatePlaylistCommand";
|
|
5
5
|
import { CreateProjectionCommand, } from "./commands/CreateProjectionCommand";
|
|
6
|
-
import { CreateProjectionsCategoryCommand, } from "./commands/CreateProjectionsCategoryCommand";
|
|
7
6
|
import { DeleteDashboardCommand, } from "./commands/DeleteDashboardCommand";
|
|
8
7
|
import { DeleteFilterCommand, } from "./commands/DeleteFilterCommand";
|
|
9
8
|
import { DeletePlaylistCommand, } from "./commands/DeletePlaylistCommand";
|
|
10
9
|
import { DeletePlaylistItemCommand, } from "./commands/DeletePlaylistItemCommand";
|
|
11
10
|
import { DeleteProjectionCommand, } from "./commands/DeleteProjectionCommand";
|
|
12
|
-
import { DeleteProjectionsCategoryCommand, } from "./commands/DeleteProjectionsCategoryCommand";
|
|
13
11
|
import { DisableProjectionCommand, } from "./commands/DisableProjectionCommand";
|
|
14
12
|
import { EnableProjectionCommand, } from "./commands/EnableProjectionCommand";
|
|
13
|
+
import { GetAnalysisSettingsCommand, } from "./commands/GetAnalysisSettingsCommand";
|
|
15
14
|
import { GetCallCharacteristicsCommand, } from "./commands/GetCallCharacteristicsCommand";
|
|
16
15
|
import { GetCallInsightsCommand, } from "./commands/GetCallInsightsCommand";
|
|
17
16
|
import { GetCallStateCommand, } from "./commands/GetCallStateCommand";
|
|
@@ -40,6 +39,7 @@ import { ListPlaylistsCommand, } from "./commands/ListPlaylistsCommand";
|
|
|
40
39
|
import { ListProjectionsCommand, } from "./commands/ListProjectionsCommand";
|
|
41
40
|
import { ListWatchHistoryCommand, } from "./commands/ListWatchHistoryCommand";
|
|
42
41
|
import { PauseProjectionCommand, } from "./commands/PauseProjectionCommand";
|
|
42
|
+
import { PutAnalysisSettingsCommand, } from "./commands/PutAnalysisSettingsCommand";
|
|
43
43
|
import { PutPlaylistItemCommand, } from "./commands/PutPlaylistItemCommand";
|
|
44
44
|
import { QueryConversationsCountCommand, } from "./commands/QueryConversationsCountCommand";
|
|
45
45
|
import { ScheduleCallSummaryGenerationCommand, } from "./commands/ScheduleCallSummaryGenerationCommand";
|
|
@@ -51,7 +51,6 @@ import { UpdatePinnedDashboardsCommand, } from "./commands/UpdatePinnedDashboard
|
|
|
51
51
|
import { UpdatePlaylistAccessCommand, } from "./commands/UpdatePlaylistAccessCommand";
|
|
52
52
|
import { UpdatePlaylistCommand, } from "./commands/UpdatePlaylistCommand";
|
|
53
53
|
import { UpdateProjectionCommand, } from "./commands/UpdateProjectionCommand";
|
|
54
|
-
import { UpdateProjectionsCategoryCommand, } from "./commands/UpdateProjectionsCategoryCommand";
|
|
55
54
|
import { WatchCommand, } from "./commands/WatchCommand";
|
|
56
55
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
57
56
|
const commands = {
|
|
@@ -59,15 +58,14 @@ const commands = {
|
|
|
59
58
|
CreateFilterCommand,
|
|
60
59
|
CreatePlaylistCommand,
|
|
61
60
|
CreateProjectionCommand,
|
|
62
|
-
CreateProjectionsCategoryCommand,
|
|
63
61
|
DeleteDashboardCommand,
|
|
64
62
|
DeleteFilterCommand,
|
|
65
63
|
DeletePlaylistCommand,
|
|
66
64
|
DeletePlaylistItemCommand,
|
|
67
65
|
DeleteProjectionCommand,
|
|
68
|
-
DeleteProjectionsCategoryCommand,
|
|
69
66
|
DisableProjectionCommand,
|
|
70
67
|
EnableProjectionCommand,
|
|
68
|
+
GetAnalysisSettingsCommand,
|
|
71
69
|
GetCallCharacteristicsCommand,
|
|
72
70
|
GetCallInsightsCommand,
|
|
73
71
|
GetCallStateCommand,
|
|
@@ -96,6 +94,7 @@ const commands = {
|
|
|
96
94
|
ListProjectionsCommand,
|
|
97
95
|
ListWatchHistoryCommand,
|
|
98
96
|
PauseProjectionCommand,
|
|
97
|
+
PutAnalysisSettingsCommand,
|
|
99
98
|
PutPlaylistItemCommand,
|
|
100
99
|
QueryConversationsCountCommand,
|
|
101
100
|
ScheduleCallSummaryGenerationCommand,
|
|
@@ -107,7 +106,6 @@ const commands = {
|
|
|
107
106
|
UpdatePlaylistCommand,
|
|
108
107
|
UpdatePlaylistAccessCommand,
|
|
109
108
|
UpdateProjectionCommand,
|
|
110
|
-
UpdateProjectionsCategoryCommand,
|
|
111
109
|
WatchCommand,
|
|
112
110
|
};
|
|
113
111
|
export class WdaInsights extends WdaInsightsClient {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_GetAnalysisSettingsCommand, se_GetAnalysisSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class GetAnalysisSettingsCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("WdaInsights", "GetAnalysisSettings", {})
|
|
12
|
+
.n("WdaInsightsClient", "GetAnalysisSettingsCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_GetAnalysisSettingsCommand)
|
|
15
|
+
.de(de_GetAnalysisSettingsCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { de_PutAnalysisSettingsCommand, se_PutAnalysisSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
export { $Command };
|
|
5
|
+
export class PutAnalysisSettingsCommand extends $Command.classBuilder()
|
|
6
|
+
.m(function (Command, cs, config, o) {
|
|
7
|
+
return [
|
|
8
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
+
];
|
|
10
|
+
})
|
|
11
|
+
.s("WdaInsights", "PutAnalysisSettings", {})
|
|
12
|
+
.n("WdaInsightsClient", "PutAnalysisSettingsCommand")
|
|
13
|
+
.f(void 0, void 0)
|
|
14
|
+
.ser(se_PutAnalysisSettingsCommand)
|
|
15
|
+
.de(de_PutAnalysisSettingsCommand)
|
|
16
|
+
.build() {
|
|
17
|
+
}
|
|
@@ -2,15 +2,14 @@ export * from "./CreateDashboardCommand";
|
|
|
2
2
|
export * from "./CreateFilterCommand";
|
|
3
3
|
export * from "./CreatePlaylistCommand";
|
|
4
4
|
export * from "./CreateProjectionCommand";
|
|
5
|
-
export * from "./CreateProjectionsCategoryCommand";
|
|
6
5
|
export * from "./DeleteDashboardCommand";
|
|
7
6
|
export * from "./DeleteFilterCommand";
|
|
8
7
|
export * from "./DeletePlaylistCommand";
|
|
9
8
|
export * from "./DeletePlaylistItemCommand";
|
|
10
9
|
export * from "./DeleteProjectionCommand";
|
|
11
|
-
export * from "./DeleteProjectionsCategoryCommand";
|
|
12
10
|
export * from "./DisableProjectionCommand";
|
|
13
11
|
export * from "./EnableProjectionCommand";
|
|
12
|
+
export * from "./GetAnalysisSettingsCommand";
|
|
14
13
|
export * from "./GetCallCharacteristicsCommand";
|
|
15
14
|
export * from "./GetCallInsightsCommand";
|
|
16
15
|
export * from "./GetCallStateCommand";
|
|
@@ -39,6 +38,7 @@ export * from "./ListPlaylistsCommand";
|
|
|
39
38
|
export * from "./ListProjectionsCommand";
|
|
40
39
|
export * from "./ListWatchHistoryCommand";
|
|
41
40
|
export * from "./PauseProjectionCommand";
|
|
41
|
+
export * from "./PutAnalysisSettingsCommand";
|
|
42
42
|
export * from "./PutPlaylistItemCommand";
|
|
43
43
|
export * from "./QueryConversationsCountCommand";
|
|
44
44
|
export * from "./ScheduleCallSummaryGenerationCommand";
|
|
@@ -50,5 +50,4 @@ export * from "./UpdatePinnedDashboardsCommand";
|
|
|
50
50
|
export * from "./UpdatePlaylistCommand";
|
|
51
51
|
export * from "./UpdatePlaylistAccessCommand";
|
|
52
52
|
export * from "./UpdateProjectionCommand";
|
|
53
|
-
export * from "./UpdateProjectionsCategoryCommand";
|
|
54
53
|
export * from "./WatchCommand";
|
|
@@ -389,9 +389,6 @@ export var ProjectionParameter;
|
|
|
389
389
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
390
390
|
};
|
|
391
391
|
})(ProjectionParameter || (ProjectionParameter = {}));
|
|
392
|
-
export const ProjectionProvider = {
|
|
393
|
-
OPENAI: "OPENAI",
|
|
394
|
-
};
|
|
395
392
|
export const ProjectionStatus = {
|
|
396
393
|
DISABLED: "DISABLED",
|
|
397
394
|
ENABLED: "ENABLED",
|
|
@@ -75,33 +75,15 @@ export const se_CreateProjectionCommand = async (input, context) => {
|
|
|
75
75
|
});
|
|
76
76
|
let body;
|
|
77
77
|
body = JSON.stringify(take(input, {
|
|
78
|
-
'
|
|
78
|
+
'category': [],
|
|
79
79
|
'conditions': _ => _json(_),
|
|
80
80
|
'description': [],
|
|
81
81
|
'fields': _ => _json(_),
|
|
82
|
+
'filter': _ => se_ListConversationsFilter(_, context),
|
|
83
|
+
'group': [],
|
|
82
84
|
'id': [],
|
|
83
85
|
'instructions': [],
|
|
84
|
-
'model':
|
|
85
|
-
'name': [],
|
|
86
|
-
}));
|
|
87
|
-
b.m("POST")
|
|
88
|
-
.h(headers)
|
|
89
|
-
.q(query)
|
|
90
|
-
.b(body);
|
|
91
|
-
return b.build();
|
|
92
|
-
};
|
|
93
|
-
export const se_CreateProjectionsCategoryCommand = async (input, context) => {
|
|
94
|
-
const b = rb(input, context);
|
|
95
|
-
const headers = {
|
|
96
|
-
'content-type': 'application/json',
|
|
97
|
-
};
|
|
98
|
-
b.bp("/v2/insights/projections-categories");
|
|
99
|
-
const query = map({
|
|
100
|
-
[_c]: [, input[_c]],
|
|
101
|
-
});
|
|
102
|
-
let body;
|
|
103
|
-
body = JSON.stringify(take(input, {
|
|
104
|
-
'id': [],
|
|
86
|
+
'model': [],
|
|
105
87
|
'name': [],
|
|
106
88
|
}));
|
|
107
89
|
b.m("POST")
|
|
@@ -189,25 +171,25 @@ export const se_DeleteProjectionCommand = async (input, context) => {
|
|
|
189
171
|
.b(body);
|
|
190
172
|
return b.build();
|
|
191
173
|
};
|
|
192
|
-
export const
|
|
174
|
+
export const se_DisableProjectionCommand = async (input, context) => {
|
|
193
175
|
const b = rb(input, context);
|
|
194
176
|
const headers = {};
|
|
195
|
-
b.bp("/v2/insights/projections
|
|
177
|
+
b.bp("/v2/insights/projections/{id}/disable");
|
|
196
178
|
b.p('id', () => input.id, '{id}', false);
|
|
197
179
|
const query = map({
|
|
198
180
|
[_c]: [, input[_c]],
|
|
199
181
|
});
|
|
200
182
|
let body;
|
|
201
|
-
b.m("
|
|
183
|
+
b.m("PATCH")
|
|
202
184
|
.h(headers)
|
|
203
185
|
.q(query)
|
|
204
186
|
.b(body);
|
|
205
187
|
return b.build();
|
|
206
188
|
};
|
|
207
|
-
export const
|
|
189
|
+
export const se_EnableProjectionCommand = async (input, context) => {
|
|
208
190
|
const b = rb(input, context);
|
|
209
191
|
const headers = {};
|
|
210
|
-
b.bp("/v2/insights/projections/{id}/
|
|
192
|
+
b.bp("/v2/insights/projections/{id}/enable");
|
|
211
193
|
b.p('id', () => input.id, '{id}', false);
|
|
212
194
|
const query = map({
|
|
213
195
|
[_c]: [, input[_c]],
|
|
@@ -219,16 +201,15 @@ export const se_DisableProjectionCommand = async (input, context) => {
|
|
|
219
201
|
.b(body);
|
|
220
202
|
return b.build();
|
|
221
203
|
};
|
|
222
|
-
export const
|
|
204
|
+
export const se_GetAnalysisSettingsCommand = async (input, context) => {
|
|
223
205
|
const b = rb(input, context);
|
|
224
206
|
const headers = {};
|
|
225
|
-
b.bp("/v2/insights/
|
|
226
|
-
b.p('id', () => input.id, '{id}', false);
|
|
207
|
+
b.bp("/v2/insights/analysis/settings");
|
|
227
208
|
const query = map({
|
|
228
209
|
[_c]: [, input[_c]],
|
|
229
210
|
});
|
|
230
211
|
let body;
|
|
231
|
-
b.m("
|
|
212
|
+
b.m("GET")
|
|
232
213
|
.h(headers)
|
|
233
214
|
.q(query)
|
|
234
215
|
.b(body);
|
|
@@ -692,6 +673,27 @@ export const se_PauseProjectionCommand = async (input, context) => {
|
|
|
692
673
|
.b(body);
|
|
693
674
|
return b.build();
|
|
694
675
|
};
|
|
676
|
+
export const se_PutAnalysisSettingsCommand = async (input, context) => {
|
|
677
|
+
const b = rb(input, context);
|
|
678
|
+
const headers = {
|
|
679
|
+
'content-type': 'application/json',
|
|
680
|
+
};
|
|
681
|
+
b.bp("/v2/insights/analysis/settings");
|
|
682
|
+
const query = map({
|
|
683
|
+
[_c]: [, input[_c]],
|
|
684
|
+
});
|
|
685
|
+
let body;
|
|
686
|
+
body = JSON.stringify(take(input, {
|
|
687
|
+
'defaultModel': [],
|
|
688
|
+
'disabled': [],
|
|
689
|
+
'filter': _ => se_ListConversationsFilter(_, context),
|
|
690
|
+
}));
|
|
691
|
+
b.m("PUT")
|
|
692
|
+
.h(headers)
|
|
693
|
+
.q(query)
|
|
694
|
+
.b(body);
|
|
695
|
+
return b.build();
|
|
696
|
+
};
|
|
695
697
|
export const se_PutPlaylistItemCommand = async (input, context) => {
|
|
696
698
|
const b = rb(input, context);
|
|
697
699
|
const headers = {
|
|
@@ -902,32 +904,14 @@ export const se_UpdateProjectionCommand = async (input, context) => {
|
|
|
902
904
|
});
|
|
903
905
|
let body;
|
|
904
906
|
body = JSON.stringify(take(input, {
|
|
905
|
-
'
|
|
907
|
+
'category': [],
|
|
906
908
|
'conditions': _ => _json(_),
|
|
907
909
|
'description': [],
|
|
908
910
|
'fields': _ => _json(_),
|
|
911
|
+
'filter': _ => se_ListConversationsFilter(_, context),
|
|
912
|
+
'group': [],
|
|
909
913
|
'instructions': [],
|
|
910
|
-
'model':
|
|
911
|
-
'name': [],
|
|
912
|
-
}));
|
|
913
|
-
b.m("PUT")
|
|
914
|
-
.h(headers)
|
|
915
|
-
.q(query)
|
|
916
|
-
.b(body);
|
|
917
|
-
return b.build();
|
|
918
|
-
};
|
|
919
|
-
export const se_UpdateProjectionsCategoryCommand = async (input, context) => {
|
|
920
|
-
const b = rb(input, context);
|
|
921
|
-
const headers = {
|
|
922
|
-
'content-type': 'application/json',
|
|
923
|
-
};
|
|
924
|
-
b.bp("/v2/insights/projections-categories/{id}");
|
|
925
|
-
b.p('id', () => input.id, '{id}', false);
|
|
926
|
-
const query = map({
|
|
927
|
-
[_c]: [, input[_c]],
|
|
928
|
-
});
|
|
929
|
-
let body;
|
|
930
|
-
body = JSON.stringify(take(input, {
|
|
914
|
+
'model': [],
|
|
931
915
|
'name': [],
|
|
932
916
|
}));
|
|
933
917
|
b.m("PUT")
|
|
@@ -1008,21 +992,7 @@ export const de_CreateProjectionCommand = async (output, context) => {
|
|
|
1008
992
|
});
|
|
1009
993
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1010
994
|
const doc = take(data, {
|
|
1011
|
-
'projection':
|
|
1012
|
-
});
|
|
1013
|
-
Object.assign(contents, doc);
|
|
1014
|
-
return contents;
|
|
1015
|
-
};
|
|
1016
|
-
export const de_CreateProjectionsCategoryCommand = async (output, context) => {
|
|
1017
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1018
|
-
return de_CommandError(output, context);
|
|
1019
|
-
}
|
|
1020
|
-
const contents = map({
|
|
1021
|
-
$metadata: deserializeMetadata(output),
|
|
1022
|
-
});
|
|
1023
|
-
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1024
|
-
const doc = take(data, {
|
|
1025
|
-
'category': _json,
|
|
995
|
+
'projection': _ => de_Projection(_, context),
|
|
1026
996
|
});
|
|
1027
997
|
Object.assign(contents, doc);
|
|
1028
998
|
return contents;
|
|
@@ -1077,17 +1047,21 @@ export const de_DeleteProjectionCommand = async (output, context) => {
|
|
|
1077
1047
|
await collectBody(output.body, context);
|
|
1078
1048
|
return contents;
|
|
1079
1049
|
};
|
|
1080
|
-
export const
|
|
1050
|
+
export const de_DisableProjectionCommand = async (output, context) => {
|
|
1081
1051
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1082
1052
|
return de_CommandError(output, context);
|
|
1083
1053
|
}
|
|
1084
1054
|
const contents = map({
|
|
1085
1055
|
$metadata: deserializeMetadata(output),
|
|
1086
1056
|
});
|
|
1087
|
-
await
|
|
1057
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1058
|
+
const doc = take(data, {
|
|
1059
|
+
'projection': _ => de_Projection(_, context),
|
|
1060
|
+
});
|
|
1061
|
+
Object.assign(contents, doc);
|
|
1088
1062
|
return contents;
|
|
1089
1063
|
};
|
|
1090
|
-
export const
|
|
1064
|
+
export const de_EnableProjectionCommand = async (output, context) => {
|
|
1091
1065
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1092
1066
|
return de_CommandError(output, context);
|
|
1093
1067
|
}
|
|
@@ -1096,12 +1070,12 @@ export const de_DisableProjectionCommand = async (output, context) => {
|
|
|
1096
1070
|
});
|
|
1097
1071
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1098
1072
|
const doc = take(data, {
|
|
1099
|
-
'projection':
|
|
1073
|
+
'projection': _ => de_Projection(_, context),
|
|
1100
1074
|
});
|
|
1101
1075
|
Object.assign(contents, doc);
|
|
1102
1076
|
return contents;
|
|
1103
1077
|
};
|
|
1104
|
-
export const
|
|
1078
|
+
export const de_GetAnalysisSettingsCommand = async (output, context) => {
|
|
1105
1079
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1106
1080
|
return de_CommandError(output, context);
|
|
1107
1081
|
}
|
|
@@ -1110,7 +1084,7 @@ export const de_EnableProjectionCommand = async (output, context) => {
|
|
|
1110
1084
|
});
|
|
1111
1085
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1112
1086
|
const doc = take(data, {
|
|
1113
|
-
'
|
|
1087
|
+
'settings': _ => de_AnalysisSettings(_, context),
|
|
1114
1088
|
});
|
|
1115
1089
|
Object.assign(contents, doc);
|
|
1116
1090
|
return contents;
|
|
@@ -1327,7 +1301,7 @@ export const de_GetProjectionCommand = async (output, context) => {
|
|
|
1327
1301
|
});
|
|
1328
1302
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1329
1303
|
const doc = take(data, {
|
|
1330
|
-
'projection':
|
|
1304
|
+
'projection': _ => de_Projection(_, context),
|
|
1331
1305
|
});
|
|
1332
1306
|
Object.assign(contents, doc);
|
|
1333
1307
|
return contents;
|
|
@@ -1488,8 +1462,7 @@ export const de_ListProjectionsCommand = async (output, context) => {
|
|
|
1488
1462
|
});
|
|
1489
1463
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1490
1464
|
const doc = take(data, {
|
|
1491
|
-
'
|
|
1492
|
-
'projections': _json,
|
|
1465
|
+
'projections': _ => de_ProjectionsList(_, context),
|
|
1493
1466
|
});
|
|
1494
1467
|
Object.assign(contents, doc);
|
|
1495
1468
|
return contents;
|
|
@@ -1519,7 +1492,21 @@ export const de_PauseProjectionCommand = async (output, context) => {
|
|
|
1519
1492
|
});
|
|
1520
1493
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1521
1494
|
const doc = take(data, {
|
|
1522
|
-
'projection':
|
|
1495
|
+
'projection': _ => de_Projection(_, context),
|
|
1496
|
+
});
|
|
1497
|
+
Object.assign(contents, doc);
|
|
1498
|
+
return contents;
|
|
1499
|
+
};
|
|
1500
|
+
export const de_PutAnalysisSettingsCommand = async (output, context) => {
|
|
1501
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1502
|
+
return de_CommandError(output, context);
|
|
1503
|
+
}
|
|
1504
|
+
const contents = map({
|
|
1505
|
+
$metadata: deserializeMetadata(output),
|
|
1506
|
+
});
|
|
1507
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1508
|
+
const doc = take(data, {
|
|
1509
|
+
'settings': _ => de_AnalysisSettings(_, context),
|
|
1523
1510
|
});
|
|
1524
1511
|
Object.assign(contents, doc);
|
|
1525
1512
|
return contents;
|
|
@@ -1657,21 +1644,7 @@ export const de_UpdateProjectionCommand = async (output, context) => {
|
|
|
1657
1644
|
});
|
|
1658
1645
|
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1659
1646
|
const doc = take(data, {
|
|
1660
|
-
'projection':
|
|
1661
|
-
});
|
|
1662
|
-
Object.assign(contents, doc);
|
|
1663
|
-
return contents;
|
|
1664
|
-
};
|
|
1665
|
-
export const de_UpdateProjectionsCategoryCommand = async (output, context) => {
|
|
1666
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1667
|
-
return de_CommandError(output, context);
|
|
1668
|
-
}
|
|
1669
|
-
const contents = map({
|
|
1670
|
-
$metadata: deserializeMetadata(output),
|
|
1671
|
-
});
|
|
1672
|
-
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
1673
|
-
const doc = take(data, {
|
|
1674
|
-
'category': _json,
|
|
1647
|
+
'projection': _ => de_Projection(_, context),
|
|
1675
1648
|
});
|
|
1676
1649
|
Object.assign(contents, doc);
|
|
1677
1650
|
return contents;
|
|
@@ -1892,6 +1865,13 @@ const de_AggregationResult = (output, context) => {
|
|
|
1892
1865
|
'buckets': (_) => de_AggregationBucketsList(_, context),
|
|
1893
1866
|
});
|
|
1894
1867
|
};
|
|
1868
|
+
const de_AnalysisSettings = (output, context) => {
|
|
1869
|
+
return take(output, {
|
|
1870
|
+
'defaultModel': __expectString,
|
|
1871
|
+
'disabled': __expectBoolean,
|
|
1872
|
+
'filter': (_) => de_ListConversationsFilter(_, context),
|
|
1873
|
+
});
|
|
1874
|
+
};
|
|
1895
1875
|
const de_Dashboard = (output, context) => {
|
|
1896
1876
|
return take(output, {
|
|
1897
1877
|
'access': _json,
|
|
@@ -2143,6 +2123,25 @@ const de_PlaylistItemsList = (output, context) => {
|
|
|
2143
2123
|
});
|
|
2144
2124
|
return retVal;
|
|
2145
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
|
+
};
|
|
2146
2145
|
const de_ProjectionInsights = (output, context) => {
|
|
2147
2146
|
return take(output, {
|
|
2148
2147
|
'fields': (_) => de_ProjectionInsightsFieldsList(_, context),
|
|
@@ -2172,6 +2171,12 @@ const de_ProjectionInsightsList = (output, context) => {
|
|
|
2172
2171
|
});
|
|
2173
2172
|
return retVal;
|
|
2174
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
|
+
};
|
|
2175
2180
|
const deserializeMetadata = (output) => ({
|
|
2176
2181
|
httpStatusCode: output.statusCode,
|
|
2177
2182
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -3,15 +3,14 @@ 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";
|
|
13
|
+
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,6 +39,7 @@ 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";
|
|
42
|
+
import { PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput } from "./commands/PutAnalysisSettingsCommand";
|
|
43
43
|
import { PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput } from "./commands/PutPlaylistItemCommand";
|
|
44
44
|
import { QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput } from "./commands/QueryConversationsCountCommand";
|
|
45
45
|
import { ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput } from "./commands/ScheduleCallSummaryGenerationCommand";
|
|
@@ -51,7 +51,6 @@ import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput
|
|
|
51
51
|
import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "./commands/UpdatePlaylistAccessCommand";
|
|
52
52
|
import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "./commands/UpdatePlaylistCommand";
|
|
53
53
|
import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "./commands/UpdateProjectionCommand";
|
|
54
|
-
import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "./commands/UpdateProjectionsCategoryCommand";
|
|
55
54
|
import { WatchCommandInput, WatchCommandOutput } from "./commands/WatchCommand";
|
|
56
55
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
57
56
|
export interface WdaInsights {
|
|
@@ -79,12 +78,6 @@ export interface WdaInsights {
|
|
|
79
78
|
createProjection(args: CreateProjectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectionCommandOutput>;
|
|
80
79
|
createProjection(args: CreateProjectionCommandInput, cb: (err: any, data?: CreateProjectionCommandOutput) => void): void;
|
|
81
80
|
createProjection(args: CreateProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectionCommandOutput) => void): void;
|
|
82
|
-
/**
|
|
83
|
-
* @see {@link CreateProjectionsCategoryCommand}
|
|
84
|
-
*/
|
|
85
|
-
createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectionsCategoryCommandOutput>;
|
|
86
|
-
createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, cb: (err: any, data?: CreateProjectionsCategoryCommandOutput) => void): void;
|
|
87
|
-
createProjectionsCategory(args: CreateProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectionsCategoryCommandOutput) => void): void;
|
|
88
81
|
/**
|
|
89
82
|
* @see {@link DeleteDashboardCommand}
|
|
90
83
|
*/
|
|
@@ -115,12 +108,6 @@ export interface WdaInsights {
|
|
|
115
108
|
deleteProjection(args: DeleteProjectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectionCommandOutput>;
|
|
116
109
|
deleteProjection(args: DeleteProjectionCommandInput, cb: (err: any, data?: DeleteProjectionCommandOutput) => void): void;
|
|
117
110
|
deleteProjection(args: DeleteProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectionCommandOutput) => void): void;
|
|
118
|
-
/**
|
|
119
|
-
* @see {@link DeleteProjectionsCategoryCommand}
|
|
120
|
-
*/
|
|
121
|
-
deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectionsCategoryCommandOutput>;
|
|
122
|
-
deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, cb: (err: any, data?: DeleteProjectionsCategoryCommandOutput) => void): void;
|
|
123
|
-
deleteProjectionsCategory(args: DeleteProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectionsCategoryCommandOutput) => void): void;
|
|
124
111
|
/**
|
|
125
112
|
* @see {@link DisableProjectionCommand}
|
|
126
113
|
*/
|
|
@@ -133,6 +120,13 @@ export interface WdaInsights {
|
|
|
133
120
|
enableProjection(args: EnableProjectionCommandInput, options?: __HttpHandlerOptions): Promise<EnableProjectionCommandOutput>;
|
|
134
121
|
enableProjection(args: EnableProjectionCommandInput, cb: (err: any, data?: EnableProjectionCommandOutput) => void): void;
|
|
135
122
|
enableProjection(args: EnableProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableProjectionCommandOutput) => void): void;
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link GetAnalysisSettingsCommand}
|
|
125
|
+
*/
|
|
126
|
+
getAnalysisSettings(): Promise<GetAnalysisSettingsCommandOutput>;
|
|
127
|
+
getAnalysisSettings(args: GetAnalysisSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAnalysisSettingsCommandOutput>;
|
|
128
|
+
getAnalysisSettings(args: GetAnalysisSettingsCommandInput, cb: (err: any, data?: GetAnalysisSettingsCommandOutput) => void): void;
|
|
129
|
+
getAnalysisSettings(args: GetAnalysisSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnalysisSettingsCommandOutput) => void): void;
|
|
136
130
|
/**
|
|
137
131
|
* @see {@link GetCallCharacteristicsCommand}
|
|
138
132
|
*/
|
|
@@ -310,6 +304,13 @@ export interface WdaInsights {
|
|
|
310
304
|
pauseProjection(args: PauseProjectionCommandInput, options?: __HttpHandlerOptions): Promise<PauseProjectionCommandOutput>;
|
|
311
305
|
pauseProjection(args: PauseProjectionCommandInput, cb: (err: any, data?: PauseProjectionCommandOutput) => void): void;
|
|
312
306
|
pauseProjection(args: PauseProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseProjectionCommandOutput) => void): void;
|
|
307
|
+
/**
|
|
308
|
+
* @see {@link PutAnalysisSettingsCommand}
|
|
309
|
+
*/
|
|
310
|
+
putAnalysisSettings(): Promise<PutAnalysisSettingsCommandOutput>;
|
|
311
|
+
putAnalysisSettings(args: PutAnalysisSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutAnalysisSettingsCommandOutput>;
|
|
312
|
+
putAnalysisSettings(args: PutAnalysisSettingsCommandInput, cb: (err: any, data?: PutAnalysisSettingsCommandOutput) => void): void;
|
|
313
|
+
putAnalysisSettings(args: PutAnalysisSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAnalysisSettingsCommandOutput) => void): void;
|
|
313
314
|
/**
|
|
314
315
|
* @see {@link PutPlaylistItemCommand}
|
|
315
316
|
*/
|
|
@@ -377,12 +378,6 @@ export interface WdaInsights {
|
|
|
377
378
|
updateProjection(args: UpdateProjectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectionCommandOutput>;
|
|
378
379
|
updateProjection(args: UpdateProjectionCommandInput, cb: (err: any, data?: UpdateProjectionCommandOutput) => void): void;
|
|
379
380
|
updateProjection(args: UpdateProjectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectionCommandOutput) => void): void;
|
|
380
|
-
/**
|
|
381
|
-
* @see {@link UpdateProjectionsCategoryCommand}
|
|
382
|
-
*/
|
|
383
|
-
updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectionsCategoryCommandOutput>;
|
|
384
|
-
updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, cb: (err: any, data?: UpdateProjectionsCategoryCommandOutput) => void): void;
|
|
385
|
-
updateProjectionsCategory(args: UpdateProjectionsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectionsCategoryCommandOutput) => void): void;
|
|
386
381
|
/**
|
|
387
382
|
* @see {@link WatchCommand}
|
|
388
383
|
*/
|
|
@@ -2,15 +2,14 @@ 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";
|
|
12
|
+
import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "./commands/GetAnalysisSettingsCommand";
|
|
14
13
|
import { GetCallCharacteristicsCommandInput, GetCallCharacteristicsCommandOutput } from "./commands/GetCallCharacteristicsCommand";
|
|
15
14
|
import { GetCallInsightsCommandInput, GetCallInsightsCommandOutput } from "./commands/GetCallInsightsCommand";
|
|
16
15
|
import { GetCallStateCommandInput, GetCallStateCommandOutput } from "./commands/GetCallStateCommand";
|
|
@@ -39,6 +38,7 @@ import { ListPlaylistsCommandInput, ListPlaylistsCommandOutput } from "./command
|
|
|
39
38
|
import { ListProjectionsCommandInput, ListProjectionsCommandOutput } from "./commands/ListProjectionsCommand";
|
|
40
39
|
import { ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput } from "./commands/ListWatchHistoryCommand";
|
|
41
40
|
import { PauseProjectionCommandInput, PauseProjectionCommandOutput } from "./commands/PauseProjectionCommand";
|
|
41
|
+
import { PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput } from "./commands/PutAnalysisSettingsCommand";
|
|
42
42
|
import { PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput } from "./commands/PutPlaylistItemCommand";
|
|
43
43
|
import { QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput } from "./commands/QueryConversationsCountCommand";
|
|
44
44
|
import { ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput } from "./commands/ScheduleCallSummaryGenerationCommand";
|
|
@@ -50,7 +50,6 @@ import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput
|
|
|
50
50
|
import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "./commands/UpdatePlaylistAccessCommand";
|
|
51
51
|
import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "./commands/UpdatePlaylistCommand";
|
|
52
52
|
import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "./commands/UpdateProjectionCommand";
|
|
53
|
-
import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "./commands/UpdateProjectionsCategoryCommand";
|
|
54
53
|
import { WatchCommandInput, WatchCommandOutput } from "./commands/WatchCommand";
|
|
55
54
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
56
55
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
@@ -63,11 +62,11 @@ export { __Client };
|
|
|
63
62
|
/**
|
|
64
63
|
* @public
|
|
65
64
|
*/
|
|
66
|
-
export type ServiceInputTypes = CreateDashboardCommandInput | CreateFilterCommandInput | CreatePlaylistCommandInput | CreateProjectionCommandInput |
|
|
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;
|
|
67
66
|
/**
|
|
68
67
|
* @public
|
|
69
68
|
*/
|
|
70
|
-
export type ServiceOutputTypes = CreateDashboardCommandOutput | CreateFilterCommandOutput | CreatePlaylistCommandOutput | CreateProjectionCommandOutput |
|
|
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;
|
|
71
70
|
/**
|
|
72
71
|
* @public
|
|
73
72
|
*/
|