@aws-sdk/client-connect 3.319.0 → 3.321.1
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/README.md +119 -7
- package/dist-cjs/Connect.js +28 -0
- package/dist-cjs/commands/ActivateEvaluationFormCommand.js +45 -0
- package/dist-cjs/commands/CreateEvaluationFormCommand.js +45 -0
- package/dist-cjs/commands/DeactivateEvaluationFormCommand.js +45 -0
- package/dist-cjs/commands/DeleteContactEvaluationCommand.js +45 -0
- package/dist-cjs/commands/DeleteEvaluationFormCommand.js +45 -0
- package/dist-cjs/commands/DescribeContactEvaluationCommand.js +45 -0
- package/dist-cjs/commands/DescribeEvaluationFormCommand.js +45 -0
- package/dist-cjs/commands/GetFederationTokenCommand.js +2 -2
- package/dist-cjs/commands/ListContactEvaluationsCommand.js +45 -0
- package/dist-cjs/commands/ListEvaluationFormVersionsCommand.js +45 -0
- package/dist-cjs/commands/ListEvaluationFormsCommand.js +45 -0
- package/dist-cjs/commands/StartContactEvaluationCommand.js +45 -0
- package/dist-cjs/commands/SubmitContactEvaluationCommand.js +45 -0
- package/dist-cjs/commands/UpdateContactEvaluationCommand.js +45 -0
- package/dist-cjs/commands/UpdateEvaluationFormCommand.js +45 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/models/models_0.js +142 -125
- package/dist-cjs/models/models_1.js +71 -1
- package/dist-cjs/pagination/ListContactEvaluationsPaginator.js +28 -0
- package/dist-cjs/pagination/ListEvaluationFormVersionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListEvaluationFormsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1272 -41
- package/dist-es/Connect.js +28 -0
- package/dist-es/commands/ActivateEvaluationFormCommand.js +41 -0
- package/dist-es/commands/CreateEvaluationFormCommand.js +41 -0
- package/dist-es/commands/DeactivateEvaluationFormCommand.js +41 -0
- package/dist-es/commands/DeleteContactEvaluationCommand.js +41 -0
- package/dist-es/commands/DeleteEvaluationFormCommand.js +41 -0
- package/dist-es/commands/DescribeContactEvaluationCommand.js +41 -0
- package/dist-es/commands/DescribeEvaluationFormCommand.js +41 -0
- package/dist-es/commands/GetFederationTokenCommand.js +1 -1
- package/dist-es/commands/ListContactEvaluationsCommand.js +41 -0
- package/dist-es/commands/ListEvaluationFormVersionsCommand.js +41 -0
- package/dist-es/commands/ListEvaluationFormsCommand.js +41 -0
- package/dist-es/commands/StartContactEvaluationCommand.js +41 -0
- package/dist-es/commands/SubmitContactEvaluationCommand.js +41 -0
- package/dist-es/commands/UpdateContactEvaluationCommand.js +41 -0
- package/dist-es/commands/UpdateEvaluationFormCommand.js +41 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/models/models_0.js +136 -116
- package/dist-es/models/models_1.js +67 -0
- package/dist-es/pagination/ListContactEvaluationsPaginator.js +24 -0
- package/dist-es/pagination/ListEvaluationFormVersionsPaginator.js +25 -0
- package/dist-es/pagination/ListEvaluationFormsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1235 -33
- package/dist-types/Connect.d.ts +98 -0
- package/dist-types/ConnectClient.d.ts +16 -2
- package/dist-types/commands/ActivateEvaluationFormCommand.d.ts +81 -0
- package/dist-types/commands/CreateEvaluationFormCommand.d.ts +213 -0
- package/dist-types/commands/CreateParticipantCommand.d.ts +1 -1
- package/dist-types/commands/DeactivateEvaluationFormCommand.d.ts +81 -0
- package/dist-types/commands/DeleteContactEvaluationCommand.d.ts +79 -0
- package/dist-types/commands/DeleteEvaluationFormCommand.d.ts +89 -0
- package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +77 -0
- package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +79 -0
- package/dist-types/commands/GetCurrentUserDataCommand.d.ts +1 -1
- package/dist-types/commands/GetFederationTokenCommand.d.ts +1 -1
- package/dist-types/commands/GetMetricDataCommand.d.ts +1 -1
- package/dist-types/commands/GetMetricDataV2Command.d.ts +1 -1
- package/dist-types/commands/GetTaskTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetTrafficDistributionCommand.d.ts +1 -1
- package/dist-types/commands/ListAgentStatusesCommand.d.ts +1 -2
- package/dist-types/commands/ListContactEvaluationsCommand.d.ts +77 -0
- package/dist-types/commands/ListEvaluationFormVersionsCommand.d.ts +78 -0
- package/dist-types/commands/ListEvaluationFormsCommand.d.ts +77 -0
- package/dist-types/commands/StartContactEvaluationCommand.d.ts +91 -0
- package/dist-types/commands/SubmitContactEvaluationCommand.d.ts +98 -0
- package/dist-types/commands/UpdateContactEvaluationCommand.d.ts +96 -0
- package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +215 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +859 -1281
- package/dist-types/models/models_1.d.ts +1758 -3
- package/dist-types/pagination/ListContactEvaluationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEvaluationFormVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEvaluationFormsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +126 -0
- package/dist-types/ts3.4/Connect.d.ts +238 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +84 -0
- package/dist-types/ts3.4/commands/ActivateEvaluationFormCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateEvaluationFormCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeactivateEvaluationFormCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteContactEvaluationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteEvaluationFormCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DescribeContactEvaluationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeEvaluationFormCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMetricDataV2Command.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTaskTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTrafficDistributionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAgentStatusesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListContactEvaluationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListEvaluationFormVersionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListEvaluationFormsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartContactEvaluationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/SubmitContactEvaluationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateContactEvaluationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateEvaluationFormCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/models/models_0.d.ts +328 -262
- package/dist-types/ts3.4/models/models_1.d.ts +425 -1
- package/dist-types/ts3.4/pagination/ListContactEvaluationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEvaluationFormVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEvaluationFormsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +168 -0
- package/package.json +4 -4
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ActivateEvaluationFormCommandInput,
|
|
4
|
+
ActivateEvaluationFormCommandOutput,
|
|
5
|
+
} from "./commands/ActivateEvaluationFormCommand";
|
|
2
6
|
import {
|
|
3
7
|
AssociateApprovedOriginCommandInput,
|
|
4
8
|
AssociateApprovedOriginCommandOutput,
|
|
@@ -55,6 +59,10 @@ import {
|
|
|
55
59
|
CreateContactFlowModuleCommandInput,
|
|
56
60
|
CreateContactFlowModuleCommandOutput,
|
|
57
61
|
} from "./commands/CreateContactFlowModuleCommand";
|
|
62
|
+
import {
|
|
63
|
+
CreateEvaluationFormCommandInput,
|
|
64
|
+
CreateEvaluationFormCommandOutput,
|
|
65
|
+
} from "./commands/CreateEvaluationFormCommand";
|
|
58
66
|
import {
|
|
59
67
|
CreateHoursOfOperationCommandInput,
|
|
60
68
|
CreateHoursOfOperationCommandOutput,
|
|
@@ -115,6 +123,14 @@ import {
|
|
|
115
123
|
CreateVocabularyCommandInput,
|
|
116
124
|
CreateVocabularyCommandOutput,
|
|
117
125
|
} from "./commands/CreateVocabularyCommand";
|
|
126
|
+
import {
|
|
127
|
+
DeactivateEvaluationFormCommandInput,
|
|
128
|
+
DeactivateEvaluationFormCommandOutput,
|
|
129
|
+
} from "./commands/DeactivateEvaluationFormCommand";
|
|
130
|
+
import {
|
|
131
|
+
DeleteContactEvaluationCommandInput,
|
|
132
|
+
DeleteContactEvaluationCommandOutput,
|
|
133
|
+
} from "./commands/DeleteContactEvaluationCommand";
|
|
118
134
|
import {
|
|
119
135
|
DeleteContactFlowCommandInput,
|
|
120
136
|
DeleteContactFlowCommandOutput,
|
|
@@ -123,6 +139,10 @@ import {
|
|
|
123
139
|
DeleteContactFlowModuleCommandInput,
|
|
124
140
|
DeleteContactFlowModuleCommandOutput,
|
|
125
141
|
} from "./commands/DeleteContactFlowModuleCommand";
|
|
142
|
+
import {
|
|
143
|
+
DeleteEvaluationFormCommandInput,
|
|
144
|
+
DeleteEvaluationFormCommandOutput,
|
|
145
|
+
} from "./commands/DeleteEvaluationFormCommand";
|
|
126
146
|
import {
|
|
127
147
|
DeleteHoursOfOperationCommandInput,
|
|
128
148
|
DeleteHoursOfOperationCommandOutput,
|
|
@@ -179,6 +199,10 @@ import {
|
|
|
179
199
|
DescribeContactCommandInput,
|
|
180
200
|
DescribeContactCommandOutput,
|
|
181
201
|
} from "./commands/DescribeContactCommand";
|
|
202
|
+
import {
|
|
203
|
+
DescribeContactEvaluationCommandInput,
|
|
204
|
+
DescribeContactEvaluationCommandOutput,
|
|
205
|
+
} from "./commands/DescribeContactEvaluationCommand";
|
|
182
206
|
import {
|
|
183
207
|
DescribeContactFlowCommandInput,
|
|
184
208
|
DescribeContactFlowCommandOutput,
|
|
@@ -187,6 +211,10 @@ import {
|
|
|
187
211
|
DescribeContactFlowModuleCommandInput,
|
|
188
212
|
DescribeContactFlowModuleCommandOutput,
|
|
189
213
|
} from "./commands/DescribeContactFlowModuleCommand";
|
|
214
|
+
import {
|
|
215
|
+
DescribeEvaluationFormCommandInput,
|
|
216
|
+
DescribeEvaluationFormCommandOutput,
|
|
217
|
+
} from "./commands/DescribeEvaluationFormCommand";
|
|
190
218
|
import {
|
|
191
219
|
DescribeHoursOfOperationCommandInput,
|
|
192
220
|
DescribeHoursOfOperationCommandOutput,
|
|
@@ -331,6 +359,10 @@ import {
|
|
|
331
359
|
ListBotsCommandInput,
|
|
332
360
|
ListBotsCommandOutput,
|
|
333
361
|
} from "./commands/ListBotsCommand";
|
|
362
|
+
import {
|
|
363
|
+
ListContactEvaluationsCommandInput,
|
|
364
|
+
ListContactEvaluationsCommandOutput,
|
|
365
|
+
} from "./commands/ListContactEvaluationsCommand";
|
|
334
366
|
import {
|
|
335
367
|
ListContactFlowModulesCommandInput,
|
|
336
368
|
ListContactFlowModulesCommandOutput,
|
|
@@ -347,6 +379,14 @@ import {
|
|
|
347
379
|
ListDefaultVocabulariesCommandInput,
|
|
348
380
|
ListDefaultVocabulariesCommandOutput,
|
|
349
381
|
} from "./commands/ListDefaultVocabulariesCommand";
|
|
382
|
+
import {
|
|
383
|
+
ListEvaluationFormsCommandInput,
|
|
384
|
+
ListEvaluationFormsCommandOutput,
|
|
385
|
+
} from "./commands/ListEvaluationFormsCommand";
|
|
386
|
+
import {
|
|
387
|
+
ListEvaluationFormVersionsCommandInput,
|
|
388
|
+
ListEvaluationFormVersionsCommandOutput,
|
|
389
|
+
} from "./commands/ListEvaluationFormVersionsCommand";
|
|
350
390
|
import {
|
|
351
391
|
ListHoursOfOperationsCommandInput,
|
|
352
392
|
ListHoursOfOperationsCommandOutput,
|
|
@@ -495,6 +535,10 @@ import {
|
|
|
495
535
|
StartChatContactCommandInput,
|
|
496
536
|
StartChatContactCommandOutput,
|
|
497
537
|
} from "./commands/StartChatContactCommand";
|
|
538
|
+
import {
|
|
539
|
+
StartContactEvaluationCommandInput,
|
|
540
|
+
StartContactEvaluationCommandOutput,
|
|
541
|
+
} from "./commands/StartContactEvaluationCommand";
|
|
498
542
|
import {
|
|
499
543
|
StartContactRecordingCommandInput,
|
|
500
544
|
StartContactRecordingCommandOutput,
|
|
@@ -523,6 +567,10 @@ import {
|
|
|
523
567
|
StopContactStreamingCommandInput,
|
|
524
568
|
StopContactStreamingCommandOutput,
|
|
525
569
|
} from "./commands/StopContactStreamingCommand";
|
|
570
|
+
import {
|
|
571
|
+
SubmitContactEvaluationCommandInput,
|
|
572
|
+
SubmitContactEvaluationCommandOutput,
|
|
573
|
+
} from "./commands/SubmitContactEvaluationCommand";
|
|
526
574
|
import {
|
|
527
575
|
SuspendContactRecordingCommandInput,
|
|
528
576
|
SuspendContactRecordingCommandOutput,
|
|
@@ -551,6 +599,10 @@ import {
|
|
|
551
599
|
UpdateContactCommandInput,
|
|
552
600
|
UpdateContactCommandOutput,
|
|
553
601
|
} from "./commands/UpdateContactCommand";
|
|
602
|
+
import {
|
|
603
|
+
UpdateContactEvaluationCommandInput,
|
|
604
|
+
UpdateContactEvaluationCommandOutput,
|
|
605
|
+
} from "./commands/UpdateContactEvaluationCommand";
|
|
554
606
|
import {
|
|
555
607
|
UpdateContactFlowContentCommandInput,
|
|
556
608
|
UpdateContactFlowContentCommandOutput,
|
|
@@ -575,6 +627,10 @@ import {
|
|
|
575
627
|
UpdateContactScheduleCommandInput,
|
|
576
628
|
UpdateContactScheduleCommandOutput,
|
|
577
629
|
} from "./commands/UpdateContactScheduleCommand";
|
|
630
|
+
import {
|
|
631
|
+
UpdateEvaluationFormCommandInput,
|
|
632
|
+
UpdateEvaluationFormCommandOutput,
|
|
633
|
+
} from "./commands/UpdateEvaluationFormCommand";
|
|
578
634
|
import {
|
|
579
635
|
UpdateHoursOfOperationCommandInput,
|
|
580
636
|
UpdateHoursOfOperationCommandOutput,
|
|
@@ -685,6 +741,19 @@ import {
|
|
|
685
741
|
} from "./commands/UpdateUserSecurityProfilesCommand";
|
|
686
742
|
import { ConnectClient } from "./ConnectClient";
|
|
687
743
|
export interface Connect {
|
|
744
|
+
activateEvaluationForm(
|
|
745
|
+
args: ActivateEvaluationFormCommandInput,
|
|
746
|
+
options?: __HttpHandlerOptions
|
|
747
|
+
): Promise<ActivateEvaluationFormCommandOutput>;
|
|
748
|
+
activateEvaluationForm(
|
|
749
|
+
args: ActivateEvaluationFormCommandInput,
|
|
750
|
+
cb: (err: any, data?: ActivateEvaluationFormCommandOutput) => void
|
|
751
|
+
): void;
|
|
752
|
+
activateEvaluationForm(
|
|
753
|
+
args: ActivateEvaluationFormCommandInput,
|
|
754
|
+
options: __HttpHandlerOptions,
|
|
755
|
+
cb: (err: any, data?: ActivateEvaluationFormCommandOutput) => void
|
|
756
|
+
): void;
|
|
688
757
|
associateApprovedOrigin(
|
|
689
758
|
args: AssociateApprovedOriginCommandInput,
|
|
690
759
|
options?: __HttpHandlerOptions
|
|
@@ -867,6 +936,19 @@ export interface Connect {
|
|
|
867
936
|
options: __HttpHandlerOptions,
|
|
868
937
|
cb: (err: any, data?: CreateContactFlowModuleCommandOutput) => void
|
|
869
938
|
): void;
|
|
939
|
+
createEvaluationForm(
|
|
940
|
+
args: CreateEvaluationFormCommandInput,
|
|
941
|
+
options?: __HttpHandlerOptions
|
|
942
|
+
): Promise<CreateEvaluationFormCommandOutput>;
|
|
943
|
+
createEvaluationForm(
|
|
944
|
+
args: CreateEvaluationFormCommandInput,
|
|
945
|
+
cb: (err: any, data?: CreateEvaluationFormCommandOutput) => void
|
|
946
|
+
): void;
|
|
947
|
+
createEvaluationForm(
|
|
948
|
+
args: CreateEvaluationFormCommandInput,
|
|
949
|
+
options: __HttpHandlerOptions,
|
|
950
|
+
cb: (err: any, data?: CreateEvaluationFormCommandOutput) => void
|
|
951
|
+
): void;
|
|
870
952
|
createHoursOfOperation(
|
|
871
953
|
args: CreateHoursOfOperationCommandInput,
|
|
872
954
|
options?: __HttpHandlerOptions
|
|
@@ -1062,6 +1144,32 @@ export interface Connect {
|
|
|
1062
1144
|
options: __HttpHandlerOptions,
|
|
1063
1145
|
cb: (err: any, data?: CreateVocabularyCommandOutput) => void
|
|
1064
1146
|
): void;
|
|
1147
|
+
deactivateEvaluationForm(
|
|
1148
|
+
args: DeactivateEvaluationFormCommandInput,
|
|
1149
|
+
options?: __HttpHandlerOptions
|
|
1150
|
+
): Promise<DeactivateEvaluationFormCommandOutput>;
|
|
1151
|
+
deactivateEvaluationForm(
|
|
1152
|
+
args: DeactivateEvaluationFormCommandInput,
|
|
1153
|
+
cb: (err: any, data?: DeactivateEvaluationFormCommandOutput) => void
|
|
1154
|
+
): void;
|
|
1155
|
+
deactivateEvaluationForm(
|
|
1156
|
+
args: DeactivateEvaluationFormCommandInput,
|
|
1157
|
+
options: __HttpHandlerOptions,
|
|
1158
|
+
cb: (err: any, data?: DeactivateEvaluationFormCommandOutput) => void
|
|
1159
|
+
): void;
|
|
1160
|
+
deleteContactEvaluation(
|
|
1161
|
+
args: DeleteContactEvaluationCommandInput,
|
|
1162
|
+
options?: __HttpHandlerOptions
|
|
1163
|
+
): Promise<DeleteContactEvaluationCommandOutput>;
|
|
1164
|
+
deleteContactEvaluation(
|
|
1165
|
+
args: DeleteContactEvaluationCommandInput,
|
|
1166
|
+
cb: (err: any, data?: DeleteContactEvaluationCommandOutput) => void
|
|
1167
|
+
): void;
|
|
1168
|
+
deleteContactEvaluation(
|
|
1169
|
+
args: DeleteContactEvaluationCommandInput,
|
|
1170
|
+
options: __HttpHandlerOptions,
|
|
1171
|
+
cb: (err: any, data?: DeleteContactEvaluationCommandOutput) => void
|
|
1172
|
+
): void;
|
|
1065
1173
|
deleteContactFlow(
|
|
1066
1174
|
args: DeleteContactFlowCommandInput,
|
|
1067
1175
|
options?: __HttpHandlerOptions
|
|
@@ -1088,6 +1196,19 @@ export interface Connect {
|
|
|
1088
1196
|
options: __HttpHandlerOptions,
|
|
1089
1197
|
cb: (err: any, data?: DeleteContactFlowModuleCommandOutput) => void
|
|
1090
1198
|
): void;
|
|
1199
|
+
deleteEvaluationForm(
|
|
1200
|
+
args: DeleteEvaluationFormCommandInput,
|
|
1201
|
+
options?: __HttpHandlerOptions
|
|
1202
|
+
): Promise<DeleteEvaluationFormCommandOutput>;
|
|
1203
|
+
deleteEvaluationForm(
|
|
1204
|
+
args: DeleteEvaluationFormCommandInput,
|
|
1205
|
+
cb: (err: any, data?: DeleteEvaluationFormCommandOutput) => void
|
|
1206
|
+
): void;
|
|
1207
|
+
deleteEvaluationForm(
|
|
1208
|
+
args: DeleteEvaluationFormCommandInput,
|
|
1209
|
+
options: __HttpHandlerOptions,
|
|
1210
|
+
cb: (err: any, data?: DeleteEvaluationFormCommandOutput) => void
|
|
1211
|
+
): void;
|
|
1091
1212
|
deleteHoursOfOperation(
|
|
1092
1213
|
args: DeleteHoursOfOperationCommandInput,
|
|
1093
1214
|
options?: __HttpHandlerOptions
|
|
@@ -1270,6 +1391,19 @@ export interface Connect {
|
|
|
1270
1391
|
options: __HttpHandlerOptions,
|
|
1271
1392
|
cb: (err: any, data?: DescribeContactCommandOutput) => void
|
|
1272
1393
|
): void;
|
|
1394
|
+
describeContactEvaluation(
|
|
1395
|
+
args: DescribeContactEvaluationCommandInput,
|
|
1396
|
+
options?: __HttpHandlerOptions
|
|
1397
|
+
): Promise<DescribeContactEvaluationCommandOutput>;
|
|
1398
|
+
describeContactEvaluation(
|
|
1399
|
+
args: DescribeContactEvaluationCommandInput,
|
|
1400
|
+
cb: (err: any, data?: DescribeContactEvaluationCommandOutput) => void
|
|
1401
|
+
): void;
|
|
1402
|
+
describeContactEvaluation(
|
|
1403
|
+
args: DescribeContactEvaluationCommandInput,
|
|
1404
|
+
options: __HttpHandlerOptions,
|
|
1405
|
+
cb: (err: any, data?: DescribeContactEvaluationCommandOutput) => void
|
|
1406
|
+
): void;
|
|
1273
1407
|
describeContactFlow(
|
|
1274
1408
|
args: DescribeContactFlowCommandInput,
|
|
1275
1409
|
options?: __HttpHandlerOptions
|
|
@@ -1296,6 +1430,19 @@ export interface Connect {
|
|
|
1296
1430
|
options: __HttpHandlerOptions,
|
|
1297
1431
|
cb: (err: any, data?: DescribeContactFlowModuleCommandOutput) => void
|
|
1298
1432
|
): void;
|
|
1433
|
+
describeEvaluationForm(
|
|
1434
|
+
args: DescribeEvaluationFormCommandInput,
|
|
1435
|
+
options?: __HttpHandlerOptions
|
|
1436
|
+
): Promise<DescribeEvaluationFormCommandOutput>;
|
|
1437
|
+
describeEvaluationForm(
|
|
1438
|
+
args: DescribeEvaluationFormCommandInput,
|
|
1439
|
+
cb: (err: any, data?: DescribeEvaluationFormCommandOutput) => void
|
|
1440
|
+
): void;
|
|
1441
|
+
describeEvaluationForm(
|
|
1442
|
+
args: DescribeEvaluationFormCommandInput,
|
|
1443
|
+
options: __HttpHandlerOptions,
|
|
1444
|
+
cb: (err: any, data?: DescribeEvaluationFormCommandOutput) => void
|
|
1445
|
+
): void;
|
|
1299
1446
|
describeHoursOfOperation(
|
|
1300
1447
|
args: DescribeHoursOfOperationCommandInput,
|
|
1301
1448
|
options?: __HttpHandlerOptions
|
|
@@ -1776,6 +1923,19 @@ export interface Connect {
|
|
|
1776
1923
|
options: __HttpHandlerOptions,
|
|
1777
1924
|
cb: (err: any, data?: ListBotsCommandOutput) => void
|
|
1778
1925
|
): void;
|
|
1926
|
+
listContactEvaluations(
|
|
1927
|
+
args: ListContactEvaluationsCommandInput,
|
|
1928
|
+
options?: __HttpHandlerOptions
|
|
1929
|
+
): Promise<ListContactEvaluationsCommandOutput>;
|
|
1930
|
+
listContactEvaluations(
|
|
1931
|
+
args: ListContactEvaluationsCommandInput,
|
|
1932
|
+
cb: (err: any, data?: ListContactEvaluationsCommandOutput) => void
|
|
1933
|
+
): void;
|
|
1934
|
+
listContactEvaluations(
|
|
1935
|
+
args: ListContactEvaluationsCommandInput,
|
|
1936
|
+
options: __HttpHandlerOptions,
|
|
1937
|
+
cb: (err: any, data?: ListContactEvaluationsCommandOutput) => void
|
|
1938
|
+
): void;
|
|
1779
1939
|
listContactFlowModules(
|
|
1780
1940
|
args: ListContactFlowModulesCommandInput,
|
|
1781
1941
|
options?: __HttpHandlerOptions
|
|
@@ -1828,6 +1988,32 @@ export interface Connect {
|
|
|
1828
1988
|
options: __HttpHandlerOptions,
|
|
1829
1989
|
cb: (err: any, data?: ListDefaultVocabulariesCommandOutput) => void
|
|
1830
1990
|
): void;
|
|
1991
|
+
listEvaluationForms(
|
|
1992
|
+
args: ListEvaluationFormsCommandInput,
|
|
1993
|
+
options?: __HttpHandlerOptions
|
|
1994
|
+
): Promise<ListEvaluationFormsCommandOutput>;
|
|
1995
|
+
listEvaluationForms(
|
|
1996
|
+
args: ListEvaluationFormsCommandInput,
|
|
1997
|
+
cb: (err: any, data?: ListEvaluationFormsCommandOutput) => void
|
|
1998
|
+
): void;
|
|
1999
|
+
listEvaluationForms(
|
|
2000
|
+
args: ListEvaluationFormsCommandInput,
|
|
2001
|
+
options: __HttpHandlerOptions,
|
|
2002
|
+
cb: (err: any, data?: ListEvaluationFormsCommandOutput) => void
|
|
2003
|
+
): void;
|
|
2004
|
+
listEvaluationFormVersions(
|
|
2005
|
+
args: ListEvaluationFormVersionsCommandInput,
|
|
2006
|
+
options?: __HttpHandlerOptions
|
|
2007
|
+
): Promise<ListEvaluationFormVersionsCommandOutput>;
|
|
2008
|
+
listEvaluationFormVersions(
|
|
2009
|
+
args: ListEvaluationFormVersionsCommandInput,
|
|
2010
|
+
cb: (err: any, data?: ListEvaluationFormVersionsCommandOutput) => void
|
|
2011
|
+
): void;
|
|
2012
|
+
listEvaluationFormVersions(
|
|
2013
|
+
args: ListEvaluationFormVersionsCommandInput,
|
|
2014
|
+
options: __HttpHandlerOptions,
|
|
2015
|
+
cb: (err: any, data?: ListEvaluationFormVersionsCommandOutput) => void
|
|
2016
|
+
): void;
|
|
1831
2017
|
listHoursOfOperations(
|
|
1832
2018
|
args: ListHoursOfOperationsCommandInput,
|
|
1833
2019
|
options?: __HttpHandlerOptions
|
|
@@ -2309,6 +2495,19 @@ export interface Connect {
|
|
|
2309
2495
|
options: __HttpHandlerOptions,
|
|
2310
2496
|
cb: (err: any, data?: StartChatContactCommandOutput) => void
|
|
2311
2497
|
): void;
|
|
2498
|
+
startContactEvaluation(
|
|
2499
|
+
args: StartContactEvaluationCommandInput,
|
|
2500
|
+
options?: __HttpHandlerOptions
|
|
2501
|
+
): Promise<StartContactEvaluationCommandOutput>;
|
|
2502
|
+
startContactEvaluation(
|
|
2503
|
+
args: StartContactEvaluationCommandInput,
|
|
2504
|
+
cb: (err: any, data?: StartContactEvaluationCommandOutput) => void
|
|
2505
|
+
): void;
|
|
2506
|
+
startContactEvaluation(
|
|
2507
|
+
args: StartContactEvaluationCommandInput,
|
|
2508
|
+
options: __HttpHandlerOptions,
|
|
2509
|
+
cb: (err: any, data?: StartContactEvaluationCommandOutput) => void
|
|
2510
|
+
): void;
|
|
2312
2511
|
startContactRecording(
|
|
2313
2512
|
args: StartContactRecordingCommandInput,
|
|
2314
2513
|
options?: __HttpHandlerOptions
|
|
@@ -2400,6 +2599,19 @@ export interface Connect {
|
|
|
2400
2599
|
options: __HttpHandlerOptions,
|
|
2401
2600
|
cb: (err: any, data?: StopContactStreamingCommandOutput) => void
|
|
2402
2601
|
): void;
|
|
2602
|
+
submitContactEvaluation(
|
|
2603
|
+
args: SubmitContactEvaluationCommandInput,
|
|
2604
|
+
options?: __HttpHandlerOptions
|
|
2605
|
+
): Promise<SubmitContactEvaluationCommandOutput>;
|
|
2606
|
+
submitContactEvaluation(
|
|
2607
|
+
args: SubmitContactEvaluationCommandInput,
|
|
2608
|
+
cb: (err: any, data?: SubmitContactEvaluationCommandOutput) => void
|
|
2609
|
+
): void;
|
|
2610
|
+
submitContactEvaluation(
|
|
2611
|
+
args: SubmitContactEvaluationCommandInput,
|
|
2612
|
+
options: __HttpHandlerOptions,
|
|
2613
|
+
cb: (err: any, data?: SubmitContactEvaluationCommandOutput) => void
|
|
2614
|
+
): void;
|
|
2403
2615
|
suspendContactRecording(
|
|
2404
2616
|
args: SuspendContactRecordingCommandInput,
|
|
2405
2617
|
options?: __HttpHandlerOptions
|
|
@@ -2491,6 +2703,19 @@ export interface Connect {
|
|
|
2491
2703
|
options: __HttpHandlerOptions,
|
|
2492
2704
|
cb: (err: any, data?: UpdateContactAttributesCommandOutput) => void
|
|
2493
2705
|
): void;
|
|
2706
|
+
updateContactEvaluation(
|
|
2707
|
+
args: UpdateContactEvaluationCommandInput,
|
|
2708
|
+
options?: __HttpHandlerOptions
|
|
2709
|
+
): Promise<UpdateContactEvaluationCommandOutput>;
|
|
2710
|
+
updateContactEvaluation(
|
|
2711
|
+
args: UpdateContactEvaluationCommandInput,
|
|
2712
|
+
cb: (err: any, data?: UpdateContactEvaluationCommandOutput) => void
|
|
2713
|
+
): void;
|
|
2714
|
+
updateContactEvaluation(
|
|
2715
|
+
args: UpdateContactEvaluationCommandInput,
|
|
2716
|
+
options: __HttpHandlerOptions,
|
|
2717
|
+
cb: (err: any, data?: UpdateContactEvaluationCommandOutput) => void
|
|
2718
|
+
): void;
|
|
2494
2719
|
updateContactFlowContent(
|
|
2495
2720
|
args: UpdateContactFlowContentCommandInput,
|
|
2496
2721
|
options?: __HttpHandlerOptions
|
|
@@ -2569,6 +2794,19 @@ export interface Connect {
|
|
|
2569
2794
|
options: __HttpHandlerOptions,
|
|
2570
2795
|
cb: (err: any, data?: UpdateContactScheduleCommandOutput) => void
|
|
2571
2796
|
): void;
|
|
2797
|
+
updateEvaluationForm(
|
|
2798
|
+
args: UpdateEvaluationFormCommandInput,
|
|
2799
|
+
options?: __HttpHandlerOptions
|
|
2800
|
+
): Promise<UpdateEvaluationFormCommandOutput>;
|
|
2801
|
+
updateEvaluationForm(
|
|
2802
|
+
args: UpdateEvaluationFormCommandInput,
|
|
2803
|
+
cb: (err: any, data?: UpdateEvaluationFormCommandOutput) => void
|
|
2804
|
+
): void;
|
|
2805
|
+
updateEvaluationForm(
|
|
2806
|
+
args: UpdateEvaluationFormCommandInput,
|
|
2807
|
+
options: __HttpHandlerOptions,
|
|
2808
|
+
cb: (err: any, data?: UpdateEvaluationFormCommandOutput) => void
|
|
2809
|
+
): void;
|
|
2572
2810
|
updateHoursOfOperation(
|
|
2573
2811
|
args: UpdateHoursOfOperationCommandInput,
|
|
2574
2812
|
options?: __HttpHandlerOptions
|
|
@@ -44,6 +44,10 @@ import {
|
|
|
44
44
|
UrlParser as __UrlParser,
|
|
45
45
|
UserAgent as __UserAgent,
|
|
46
46
|
} from "@aws-sdk/types";
|
|
47
|
+
import {
|
|
48
|
+
ActivateEvaluationFormCommandInput,
|
|
49
|
+
ActivateEvaluationFormCommandOutput,
|
|
50
|
+
} from "./commands/ActivateEvaluationFormCommand";
|
|
47
51
|
import {
|
|
48
52
|
AssociateApprovedOriginCommandInput,
|
|
49
53
|
AssociateApprovedOriginCommandOutput,
|
|
@@ -100,6 +104,10 @@ import {
|
|
|
100
104
|
CreateContactFlowModuleCommandInput,
|
|
101
105
|
CreateContactFlowModuleCommandOutput,
|
|
102
106
|
} from "./commands/CreateContactFlowModuleCommand";
|
|
107
|
+
import {
|
|
108
|
+
CreateEvaluationFormCommandInput,
|
|
109
|
+
CreateEvaluationFormCommandOutput,
|
|
110
|
+
} from "./commands/CreateEvaluationFormCommand";
|
|
103
111
|
import {
|
|
104
112
|
CreateHoursOfOperationCommandInput,
|
|
105
113
|
CreateHoursOfOperationCommandOutput,
|
|
@@ -160,6 +168,14 @@ import {
|
|
|
160
168
|
CreateVocabularyCommandInput,
|
|
161
169
|
CreateVocabularyCommandOutput,
|
|
162
170
|
} from "./commands/CreateVocabularyCommand";
|
|
171
|
+
import {
|
|
172
|
+
DeactivateEvaluationFormCommandInput,
|
|
173
|
+
DeactivateEvaluationFormCommandOutput,
|
|
174
|
+
} from "./commands/DeactivateEvaluationFormCommand";
|
|
175
|
+
import {
|
|
176
|
+
DeleteContactEvaluationCommandInput,
|
|
177
|
+
DeleteContactEvaluationCommandOutput,
|
|
178
|
+
} from "./commands/DeleteContactEvaluationCommand";
|
|
163
179
|
import {
|
|
164
180
|
DeleteContactFlowCommandInput,
|
|
165
181
|
DeleteContactFlowCommandOutput,
|
|
@@ -168,6 +184,10 @@ import {
|
|
|
168
184
|
DeleteContactFlowModuleCommandInput,
|
|
169
185
|
DeleteContactFlowModuleCommandOutput,
|
|
170
186
|
} from "./commands/DeleteContactFlowModuleCommand";
|
|
187
|
+
import {
|
|
188
|
+
DeleteEvaluationFormCommandInput,
|
|
189
|
+
DeleteEvaluationFormCommandOutput,
|
|
190
|
+
} from "./commands/DeleteEvaluationFormCommand";
|
|
171
191
|
import {
|
|
172
192
|
DeleteHoursOfOperationCommandInput,
|
|
173
193
|
DeleteHoursOfOperationCommandOutput,
|
|
@@ -224,6 +244,10 @@ import {
|
|
|
224
244
|
DescribeContactCommandInput,
|
|
225
245
|
DescribeContactCommandOutput,
|
|
226
246
|
} from "./commands/DescribeContactCommand";
|
|
247
|
+
import {
|
|
248
|
+
DescribeContactEvaluationCommandInput,
|
|
249
|
+
DescribeContactEvaluationCommandOutput,
|
|
250
|
+
} from "./commands/DescribeContactEvaluationCommand";
|
|
227
251
|
import {
|
|
228
252
|
DescribeContactFlowCommandInput,
|
|
229
253
|
DescribeContactFlowCommandOutput,
|
|
@@ -232,6 +256,10 @@ import {
|
|
|
232
256
|
DescribeContactFlowModuleCommandInput,
|
|
233
257
|
DescribeContactFlowModuleCommandOutput,
|
|
234
258
|
} from "./commands/DescribeContactFlowModuleCommand";
|
|
259
|
+
import {
|
|
260
|
+
DescribeEvaluationFormCommandInput,
|
|
261
|
+
DescribeEvaluationFormCommandOutput,
|
|
262
|
+
} from "./commands/DescribeEvaluationFormCommand";
|
|
235
263
|
import {
|
|
236
264
|
DescribeHoursOfOperationCommandInput,
|
|
237
265
|
DescribeHoursOfOperationCommandOutput,
|
|
@@ -376,6 +404,10 @@ import {
|
|
|
376
404
|
ListBotsCommandInput,
|
|
377
405
|
ListBotsCommandOutput,
|
|
378
406
|
} from "./commands/ListBotsCommand";
|
|
407
|
+
import {
|
|
408
|
+
ListContactEvaluationsCommandInput,
|
|
409
|
+
ListContactEvaluationsCommandOutput,
|
|
410
|
+
} from "./commands/ListContactEvaluationsCommand";
|
|
379
411
|
import {
|
|
380
412
|
ListContactFlowModulesCommandInput,
|
|
381
413
|
ListContactFlowModulesCommandOutput,
|
|
@@ -392,6 +424,14 @@ import {
|
|
|
392
424
|
ListDefaultVocabulariesCommandInput,
|
|
393
425
|
ListDefaultVocabulariesCommandOutput,
|
|
394
426
|
} from "./commands/ListDefaultVocabulariesCommand";
|
|
427
|
+
import {
|
|
428
|
+
ListEvaluationFormsCommandInput,
|
|
429
|
+
ListEvaluationFormsCommandOutput,
|
|
430
|
+
} from "./commands/ListEvaluationFormsCommand";
|
|
431
|
+
import {
|
|
432
|
+
ListEvaluationFormVersionsCommandInput,
|
|
433
|
+
ListEvaluationFormVersionsCommandOutput,
|
|
434
|
+
} from "./commands/ListEvaluationFormVersionsCommand";
|
|
395
435
|
import {
|
|
396
436
|
ListHoursOfOperationsCommandInput,
|
|
397
437
|
ListHoursOfOperationsCommandOutput,
|
|
@@ -540,6 +580,10 @@ import {
|
|
|
540
580
|
StartChatContactCommandInput,
|
|
541
581
|
StartChatContactCommandOutput,
|
|
542
582
|
} from "./commands/StartChatContactCommand";
|
|
583
|
+
import {
|
|
584
|
+
StartContactEvaluationCommandInput,
|
|
585
|
+
StartContactEvaluationCommandOutput,
|
|
586
|
+
} from "./commands/StartContactEvaluationCommand";
|
|
543
587
|
import {
|
|
544
588
|
StartContactRecordingCommandInput,
|
|
545
589
|
StartContactRecordingCommandOutput,
|
|
@@ -568,6 +612,10 @@ import {
|
|
|
568
612
|
StopContactStreamingCommandInput,
|
|
569
613
|
StopContactStreamingCommandOutput,
|
|
570
614
|
} from "./commands/StopContactStreamingCommand";
|
|
615
|
+
import {
|
|
616
|
+
SubmitContactEvaluationCommandInput,
|
|
617
|
+
SubmitContactEvaluationCommandOutput,
|
|
618
|
+
} from "./commands/SubmitContactEvaluationCommand";
|
|
571
619
|
import {
|
|
572
620
|
SuspendContactRecordingCommandInput,
|
|
573
621
|
SuspendContactRecordingCommandOutput,
|
|
@@ -596,6 +644,10 @@ import {
|
|
|
596
644
|
UpdateContactCommandInput,
|
|
597
645
|
UpdateContactCommandOutput,
|
|
598
646
|
} from "./commands/UpdateContactCommand";
|
|
647
|
+
import {
|
|
648
|
+
UpdateContactEvaluationCommandInput,
|
|
649
|
+
UpdateContactEvaluationCommandOutput,
|
|
650
|
+
} from "./commands/UpdateContactEvaluationCommand";
|
|
599
651
|
import {
|
|
600
652
|
UpdateContactFlowContentCommandInput,
|
|
601
653
|
UpdateContactFlowContentCommandOutput,
|
|
@@ -620,6 +672,10 @@ import {
|
|
|
620
672
|
UpdateContactScheduleCommandInput,
|
|
621
673
|
UpdateContactScheduleCommandOutput,
|
|
622
674
|
} from "./commands/UpdateContactScheduleCommand";
|
|
675
|
+
import {
|
|
676
|
+
UpdateEvaluationFormCommandInput,
|
|
677
|
+
UpdateEvaluationFormCommandOutput,
|
|
678
|
+
} from "./commands/UpdateEvaluationFormCommand";
|
|
623
679
|
import {
|
|
624
680
|
UpdateHoursOfOperationCommandInput,
|
|
625
681
|
UpdateHoursOfOperationCommandOutput,
|
|
@@ -734,6 +790,7 @@ import {
|
|
|
734
790
|
EndpointParameters,
|
|
735
791
|
} from "./endpoint/EndpointParameters";
|
|
736
792
|
export type ServiceInputTypes =
|
|
793
|
+
| ActivateEvaluationFormCommandInput
|
|
737
794
|
| AssociateApprovedOriginCommandInput
|
|
738
795
|
| AssociateBotCommandInput
|
|
739
796
|
| AssociateDefaultVocabularyCommandInput
|
|
@@ -748,6 +805,7 @@ export type ServiceInputTypes =
|
|
|
748
805
|
| CreateAgentStatusCommandInput
|
|
749
806
|
| CreateContactFlowCommandInput
|
|
750
807
|
| CreateContactFlowModuleCommandInput
|
|
808
|
+
| CreateEvaluationFormCommandInput
|
|
751
809
|
| CreateHoursOfOperationCommandInput
|
|
752
810
|
| CreateInstanceCommandInput
|
|
753
811
|
| CreateIntegrationAssociationCommandInput
|
|
@@ -763,8 +821,11 @@ export type ServiceInputTypes =
|
|
|
763
821
|
| CreateUserCommandInput
|
|
764
822
|
| CreateUserHierarchyGroupCommandInput
|
|
765
823
|
| CreateVocabularyCommandInput
|
|
824
|
+
| DeactivateEvaluationFormCommandInput
|
|
825
|
+
| DeleteContactEvaluationCommandInput
|
|
766
826
|
| DeleteContactFlowCommandInput
|
|
767
827
|
| DeleteContactFlowModuleCommandInput
|
|
828
|
+
| DeleteEvaluationFormCommandInput
|
|
768
829
|
| DeleteHoursOfOperationCommandInput
|
|
769
830
|
| DeleteInstanceCommandInput
|
|
770
831
|
| DeleteIntegrationAssociationCommandInput
|
|
@@ -779,8 +840,10 @@ export type ServiceInputTypes =
|
|
|
779
840
|
| DeleteVocabularyCommandInput
|
|
780
841
|
| DescribeAgentStatusCommandInput
|
|
781
842
|
| DescribeContactCommandInput
|
|
843
|
+
| DescribeContactEvaluationCommandInput
|
|
782
844
|
| DescribeContactFlowCommandInput
|
|
783
845
|
| DescribeContactFlowModuleCommandInput
|
|
846
|
+
| DescribeEvaluationFormCommandInput
|
|
784
847
|
| DescribeHoursOfOperationCommandInput
|
|
785
848
|
| DescribeInstanceAttributeCommandInput
|
|
786
849
|
| DescribeInstanceCommandInput
|
|
@@ -817,10 +880,13 @@ export type ServiceInputTypes =
|
|
|
817
880
|
| ListAgentStatusesCommandInput
|
|
818
881
|
| ListApprovedOriginsCommandInput
|
|
819
882
|
| ListBotsCommandInput
|
|
883
|
+
| ListContactEvaluationsCommandInput
|
|
820
884
|
| ListContactFlowModulesCommandInput
|
|
821
885
|
| ListContactFlowsCommandInput
|
|
822
886
|
| ListContactReferencesCommandInput
|
|
823
887
|
| ListDefaultVocabulariesCommandInput
|
|
888
|
+
| ListEvaluationFormVersionsCommandInput
|
|
889
|
+
| ListEvaluationFormsCommandInput
|
|
824
890
|
| ListHoursOfOperationsCommandInput
|
|
825
891
|
| ListInstanceAttributesCommandInput
|
|
826
892
|
| ListInstanceStorageConfigsCommandInput
|
|
@@ -858,6 +924,7 @@ export type ServiceInputTypes =
|
|
|
858
924
|
| SearchUsersCommandInput
|
|
859
925
|
| SearchVocabulariesCommandInput
|
|
860
926
|
| StartChatContactCommandInput
|
|
927
|
+
| StartContactEvaluationCommandInput
|
|
861
928
|
| StartContactRecordingCommandInput
|
|
862
929
|
| StartContactStreamingCommandInput
|
|
863
930
|
| StartOutboundVoiceContactCommandInput
|
|
@@ -865,6 +932,7 @@ export type ServiceInputTypes =
|
|
|
865
932
|
| StopContactCommandInput
|
|
866
933
|
| StopContactRecordingCommandInput
|
|
867
934
|
| StopContactStreamingCommandInput
|
|
935
|
+
| SubmitContactEvaluationCommandInput
|
|
868
936
|
| SuspendContactRecordingCommandInput
|
|
869
937
|
| TagResourceCommandInput
|
|
870
938
|
| TransferContactCommandInput
|
|
@@ -872,12 +940,14 @@ export type ServiceInputTypes =
|
|
|
872
940
|
| UpdateAgentStatusCommandInput
|
|
873
941
|
| UpdateContactAttributesCommandInput
|
|
874
942
|
| UpdateContactCommandInput
|
|
943
|
+
| UpdateContactEvaluationCommandInput
|
|
875
944
|
| UpdateContactFlowContentCommandInput
|
|
876
945
|
| UpdateContactFlowMetadataCommandInput
|
|
877
946
|
| UpdateContactFlowModuleContentCommandInput
|
|
878
947
|
| UpdateContactFlowModuleMetadataCommandInput
|
|
879
948
|
| UpdateContactFlowNameCommandInput
|
|
880
949
|
| UpdateContactScheduleCommandInput
|
|
950
|
+
| UpdateEvaluationFormCommandInput
|
|
881
951
|
| UpdateHoursOfOperationCommandInput
|
|
882
952
|
| UpdateInstanceAttributeCommandInput
|
|
883
953
|
| UpdateInstanceStorageConfigCommandInput
|
|
@@ -906,6 +976,7 @@ export type ServiceInputTypes =
|
|
|
906
976
|
| UpdateUserRoutingProfileCommandInput
|
|
907
977
|
| UpdateUserSecurityProfilesCommandInput;
|
|
908
978
|
export type ServiceOutputTypes =
|
|
979
|
+
| ActivateEvaluationFormCommandOutput
|
|
909
980
|
| AssociateApprovedOriginCommandOutput
|
|
910
981
|
| AssociateBotCommandOutput
|
|
911
982
|
| AssociateDefaultVocabularyCommandOutput
|
|
@@ -920,6 +991,7 @@ export type ServiceOutputTypes =
|
|
|
920
991
|
| CreateAgentStatusCommandOutput
|
|
921
992
|
| CreateContactFlowCommandOutput
|
|
922
993
|
| CreateContactFlowModuleCommandOutput
|
|
994
|
+
| CreateEvaluationFormCommandOutput
|
|
923
995
|
| CreateHoursOfOperationCommandOutput
|
|
924
996
|
| CreateInstanceCommandOutput
|
|
925
997
|
| CreateIntegrationAssociationCommandOutput
|
|
@@ -935,8 +1007,11 @@ export type ServiceOutputTypes =
|
|
|
935
1007
|
| CreateUserCommandOutput
|
|
936
1008
|
| CreateUserHierarchyGroupCommandOutput
|
|
937
1009
|
| CreateVocabularyCommandOutput
|
|
1010
|
+
| DeactivateEvaluationFormCommandOutput
|
|
1011
|
+
| DeleteContactEvaluationCommandOutput
|
|
938
1012
|
| DeleteContactFlowCommandOutput
|
|
939
1013
|
| DeleteContactFlowModuleCommandOutput
|
|
1014
|
+
| DeleteEvaluationFormCommandOutput
|
|
940
1015
|
| DeleteHoursOfOperationCommandOutput
|
|
941
1016
|
| DeleteInstanceCommandOutput
|
|
942
1017
|
| DeleteIntegrationAssociationCommandOutput
|
|
@@ -951,8 +1026,10 @@ export type ServiceOutputTypes =
|
|
|
951
1026
|
| DeleteVocabularyCommandOutput
|
|
952
1027
|
| DescribeAgentStatusCommandOutput
|
|
953
1028
|
| DescribeContactCommandOutput
|
|
1029
|
+
| DescribeContactEvaluationCommandOutput
|
|
954
1030
|
| DescribeContactFlowCommandOutput
|
|
955
1031
|
| DescribeContactFlowModuleCommandOutput
|
|
1032
|
+
| DescribeEvaluationFormCommandOutput
|
|
956
1033
|
| DescribeHoursOfOperationCommandOutput
|
|
957
1034
|
| DescribeInstanceAttributeCommandOutput
|
|
958
1035
|
| DescribeInstanceCommandOutput
|
|
@@ -989,10 +1066,13 @@ export type ServiceOutputTypes =
|
|
|
989
1066
|
| ListAgentStatusesCommandOutput
|
|
990
1067
|
| ListApprovedOriginsCommandOutput
|
|
991
1068
|
| ListBotsCommandOutput
|
|
1069
|
+
| ListContactEvaluationsCommandOutput
|
|
992
1070
|
| ListContactFlowModulesCommandOutput
|
|
993
1071
|
| ListContactFlowsCommandOutput
|
|
994
1072
|
| ListContactReferencesCommandOutput
|
|
995
1073
|
| ListDefaultVocabulariesCommandOutput
|
|
1074
|
+
| ListEvaluationFormVersionsCommandOutput
|
|
1075
|
+
| ListEvaluationFormsCommandOutput
|
|
996
1076
|
| ListHoursOfOperationsCommandOutput
|
|
997
1077
|
| ListInstanceAttributesCommandOutput
|
|
998
1078
|
| ListInstanceStorageConfigsCommandOutput
|
|
@@ -1030,6 +1110,7 @@ export type ServiceOutputTypes =
|
|
|
1030
1110
|
| SearchUsersCommandOutput
|
|
1031
1111
|
| SearchVocabulariesCommandOutput
|
|
1032
1112
|
| StartChatContactCommandOutput
|
|
1113
|
+
| StartContactEvaluationCommandOutput
|
|
1033
1114
|
| StartContactRecordingCommandOutput
|
|
1034
1115
|
| StartContactStreamingCommandOutput
|
|
1035
1116
|
| StartOutboundVoiceContactCommandOutput
|
|
@@ -1037,6 +1118,7 @@ export type ServiceOutputTypes =
|
|
|
1037
1118
|
| StopContactCommandOutput
|
|
1038
1119
|
| StopContactRecordingCommandOutput
|
|
1039
1120
|
| StopContactStreamingCommandOutput
|
|
1121
|
+
| SubmitContactEvaluationCommandOutput
|
|
1040
1122
|
| SuspendContactRecordingCommandOutput
|
|
1041
1123
|
| TagResourceCommandOutput
|
|
1042
1124
|
| TransferContactCommandOutput
|
|
@@ -1044,12 +1126,14 @@ export type ServiceOutputTypes =
|
|
|
1044
1126
|
| UpdateAgentStatusCommandOutput
|
|
1045
1127
|
| UpdateContactAttributesCommandOutput
|
|
1046
1128
|
| UpdateContactCommandOutput
|
|
1129
|
+
| UpdateContactEvaluationCommandOutput
|
|
1047
1130
|
| UpdateContactFlowContentCommandOutput
|
|
1048
1131
|
| UpdateContactFlowMetadataCommandOutput
|
|
1049
1132
|
| UpdateContactFlowModuleContentCommandOutput
|
|
1050
1133
|
| UpdateContactFlowModuleMetadataCommandOutput
|
|
1051
1134
|
| UpdateContactFlowNameCommandOutput
|
|
1052
1135
|
| UpdateContactScheduleCommandOutput
|
|
1136
|
+
| UpdateEvaluationFormCommandOutput
|
|
1053
1137
|
| UpdateHoursOfOperationCommandOutput
|
|
1054
1138
|
| UpdateInstanceAttributeCommandOutput
|
|
1055
1139
|
| UpdateInstanceStorageConfigCommandOutput
|