@aws-sdk/client-connect 3.319.0 → 3.320.0
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 +1 -1
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@aws-sdk/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
ActivateEvaluationFormCommandInput,
|
|
8
|
+
ActivateEvaluationFormCommandOutput,
|
|
9
|
+
} from "../commands/ActivateEvaluationFormCommand";
|
|
6
10
|
import {
|
|
7
11
|
AssociateApprovedOriginCommandInput,
|
|
8
12
|
AssociateApprovedOriginCommandOutput,
|
|
@@ -59,6 +63,10 @@ import {
|
|
|
59
63
|
CreateContactFlowModuleCommandInput,
|
|
60
64
|
CreateContactFlowModuleCommandOutput,
|
|
61
65
|
} from "../commands/CreateContactFlowModuleCommand";
|
|
66
|
+
import {
|
|
67
|
+
CreateEvaluationFormCommandInput,
|
|
68
|
+
CreateEvaluationFormCommandOutput,
|
|
69
|
+
} from "../commands/CreateEvaluationFormCommand";
|
|
62
70
|
import {
|
|
63
71
|
CreateHoursOfOperationCommandInput,
|
|
64
72
|
CreateHoursOfOperationCommandOutput,
|
|
@@ -119,6 +127,14 @@ import {
|
|
|
119
127
|
CreateVocabularyCommandInput,
|
|
120
128
|
CreateVocabularyCommandOutput,
|
|
121
129
|
} from "../commands/CreateVocabularyCommand";
|
|
130
|
+
import {
|
|
131
|
+
DeactivateEvaluationFormCommandInput,
|
|
132
|
+
DeactivateEvaluationFormCommandOutput,
|
|
133
|
+
} from "../commands/DeactivateEvaluationFormCommand";
|
|
134
|
+
import {
|
|
135
|
+
DeleteContactEvaluationCommandInput,
|
|
136
|
+
DeleteContactEvaluationCommandOutput,
|
|
137
|
+
} from "../commands/DeleteContactEvaluationCommand";
|
|
122
138
|
import {
|
|
123
139
|
DeleteContactFlowCommandInput,
|
|
124
140
|
DeleteContactFlowCommandOutput,
|
|
@@ -127,6 +143,10 @@ import {
|
|
|
127
143
|
DeleteContactFlowModuleCommandInput,
|
|
128
144
|
DeleteContactFlowModuleCommandOutput,
|
|
129
145
|
} from "../commands/DeleteContactFlowModuleCommand";
|
|
146
|
+
import {
|
|
147
|
+
DeleteEvaluationFormCommandInput,
|
|
148
|
+
DeleteEvaluationFormCommandOutput,
|
|
149
|
+
} from "../commands/DeleteEvaluationFormCommand";
|
|
130
150
|
import {
|
|
131
151
|
DeleteHoursOfOperationCommandInput,
|
|
132
152
|
DeleteHoursOfOperationCommandOutput,
|
|
@@ -183,6 +203,10 @@ import {
|
|
|
183
203
|
DescribeContactCommandInput,
|
|
184
204
|
DescribeContactCommandOutput,
|
|
185
205
|
} from "../commands/DescribeContactCommand";
|
|
206
|
+
import {
|
|
207
|
+
DescribeContactEvaluationCommandInput,
|
|
208
|
+
DescribeContactEvaluationCommandOutput,
|
|
209
|
+
} from "../commands/DescribeContactEvaluationCommand";
|
|
186
210
|
import {
|
|
187
211
|
DescribeContactFlowCommandInput,
|
|
188
212
|
DescribeContactFlowCommandOutput,
|
|
@@ -191,6 +215,10 @@ import {
|
|
|
191
215
|
DescribeContactFlowModuleCommandInput,
|
|
192
216
|
DescribeContactFlowModuleCommandOutput,
|
|
193
217
|
} from "../commands/DescribeContactFlowModuleCommand";
|
|
218
|
+
import {
|
|
219
|
+
DescribeEvaluationFormCommandInput,
|
|
220
|
+
DescribeEvaluationFormCommandOutput,
|
|
221
|
+
} from "../commands/DescribeEvaluationFormCommand";
|
|
194
222
|
import {
|
|
195
223
|
DescribeHoursOfOperationCommandInput,
|
|
196
224
|
DescribeHoursOfOperationCommandOutput,
|
|
@@ -335,6 +363,10 @@ import {
|
|
|
335
363
|
ListBotsCommandInput,
|
|
336
364
|
ListBotsCommandOutput,
|
|
337
365
|
} from "../commands/ListBotsCommand";
|
|
366
|
+
import {
|
|
367
|
+
ListContactEvaluationsCommandInput,
|
|
368
|
+
ListContactEvaluationsCommandOutput,
|
|
369
|
+
} from "../commands/ListContactEvaluationsCommand";
|
|
338
370
|
import {
|
|
339
371
|
ListContactFlowModulesCommandInput,
|
|
340
372
|
ListContactFlowModulesCommandOutput,
|
|
@@ -351,6 +383,14 @@ import {
|
|
|
351
383
|
ListDefaultVocabulariesCommandInput,
|
|
352
384
|
ListDefaultVocabulariesCommandOutput,
|
|
353
385
|
} from "../commands/ListDefaultVocabulariesCommand";
|
|
386
|
+
import {
|
|
387
|
+
ListEvaluationFormsCommandInput,
|
|
388
|
+
ListEvaluationFormsCommandOutput,
|
|
389
|
+
} from "../commands/ListEvaluationFormsCommand";
|
|
390
|
+
import {
|
|
391
|
+
ListEvaluationFormVersionsCommandInput,
|
|
392
|
+
ListEvaluationFormVersionsCommandOutput,
|
|
393
|
+
} from "../commands/ListEvaluationFormVersionsCommand";
|
|
354
394
|
import {
|
|
355
395
|
ListHoursOfOperationsCommandInput,
|
|
356
396
|
ListHoursOfOperationsCommandOutput,
|
|
@@ -499,6 +539,10 @@ import {
|
|
|
499
539
|
StartChatContactCommandInput,
|
|
500
540
|
StartChatContactCommandOutput,
|
|
501
541
|
} from "../commands/StartChatContactCommand";
|
|
542
|
+
import {
|
|
543
|
+
StartContactEvaluationCommandInput,
|
|
544
|
+
StartContactEvaluationCommandOutput,
|
|
545
|
+
} from "../commands/StartContactEvaluationCommand";
|
|
502
546
|
import {
|
|
503
547
|
StartContactRecordingCommandInput,
|
|
504
548
|
StartContactRecordingCommandOutput,
|
|
@@ -527,6 +571,10 @@ import {
|
|
|
527
571
|
StopContactStreamingCommandInput,
|
|
528
572
|
StopContactStreamingCommandOutput,
|
|
529
573
|
} from "../commands/StopContactStreamingCommand";
|
|
574
|
+
import {
|
|
575
|
+
SubmitContactEvaluationCommandInput,
|
|
576
|
+
SubmitContactEvaluationCommandOutput,
|
|
577
|
+
} from "../commands/SubmitContactEvaluationCommand";
|
|
530
578
|
import {
|
|
531
579
|
SuspendContactRecordingCommandInput,
|
|
532
580
|
SuspendContactRecordingCommandOutput,
|
|
@@ -555,6 +603,10 @@ import {
|
|
|
555
603
|
UpdateContactCommandInput,
|
|
556
604
|
UpdateContactCommandOutput,
|
|
557
605
|
} from "../commands/UpdateContactCommand";
|
|
606
|
+
import {
|
|
607
|
+
UpdateContactEvaluationCommandInput,
|
|
608
|
+
UpdateContactEvaluationCommandOutput,
|
|
609
|
+
} from "../commands/UpdateContactEvaluationCommand";
|
|
558
610
|
import {
|
|
559
611
|
UpdateContactFlowContentCommandInput,
|
|
560
612
|
UpdateContactFlowContentCommandOutput,
|
|
@@ -579,6 +631,10 @@ import {
|
|
|
579
631
|
UpdateContactScheduleCommandInput,
|
|
580
632
|
UpdateContactScheduleCommandOutput,
|
|
581
633
|
} from "../commands/UpdateContactScheduleCommand";
|
|
634
|
+
import {
|
|
635
|
+
UpdateEvaluationFormCommandInput,
|
|
636
|
+
UpdateEvaluationFormCommandOutput,
|
|
637
|
+
} from "../commands/UpdateEvaluationFormCommand";
|
|
582
638
|
import {
|
|
583
639
|
UpdateHoursOfOperationCommandInput,
|
|
584
640
|
UpdateHoursOfOperationCommandOutput,
|
|
@@ -687,6 +743,10 @@ import {
|
|
|
687
743
|
UpdateUserSecurityProfilesCommandInput,
|
|
688
744
|
UpdateUserSecurityProfilesCommandOutput,
|
|
689
745
|
} from "../commands/UpdateUserSecurityProfilesCommand";
|
|
746
|
+
export declare const se_ActivateEvaluationFormCommand: (
|
|
747
|
+
input: ActivateEvaluationFormCommandInput,
|
|
748
|
+
context: __SerdeContext
|
|
749
|
+
) => Promise<__HttpRequest>;
|
|
690
750
|
export declare const se_AssociateApprovedOriginCommand: (
|
|
691
751
|
input: AssociateApprovedOriginCommandInput,
|
|
692
752
|
context: __SerdeContext
|
|
@@ -743,6 +803,10 @@ export declare const se_CreateContactFlowModuleCommand: (
|
|
|
743
803
|
input: CreateContactFlowModuleCommandInput,
|
|
744
804
|
context: __SerdeContext
|
|
745
805
|
) => Promise<__HttpRequest>;
|
|
806
|
+
export declare const se_CreateEvaluationFormCommand: (
|
|
807
|
+
input: CreateEvaluationFormCommandInput,
|
|
808
|
+
context: __SerdeContext
|
|
809
|
+
) => Promise<__HttpRequest>;
|
|
746
810
|
export declare const se_CreateHoursOfOperationCommand: (
|
|
747
811
|
input: CreateHoursOfOperationCommandInput,
|
|
748
812
|
context: __SerdeContext
|
|
@@ -803,6 +867,14 @@ export declare const se_CreateVocabularyCommand: (
|
|
|
803
867
|
input: CreateVocabularyCommandInput,
|
|
804
868
|
context: __SerdeContext
|
|
805
869
|
) => Promise<__HttpRequest>;
|
|
870
|
+
export declare const se_DeactivateEvaluationFormCommand: (
|
|
871
|
+
input: DeactivateEvaluationFormCommandInput,
|
|
872
|
+
context: __SerdeContext
|
|
873
|
+
) => Promise<__HttpRequest>;
|
|
874
|
+
export declare const se_DeleteContactEvaluationCommand: (
|
|
875
|
+
input: DeleteContactEvaluationCommandInput,
|
|
876
|
+
context: __SerdeContext
|
|
877
|
+
) => Promise<__HttpRequest>;
|
|
806
878
|
export declare const se_DeleteContactFlowCommand: (
|
|
807
879
|
input: DeleteContactFlowCommandInput,
|
|
808
880
|
context: __SerdeContext
|
|
@@ -811,6 +883,10 @@ export declare const se_DeleteContactFlowModuleCommand: (
|
|
|
811
883
|
input: DeleteContactFlowModuleCommandInput,
|
|
812
884
|
context: __SerdeContext
|
|
813
885
|
) => Promise<__HttpRequest>;
|
|
886
|
+
export declare const se_DeleteEvaluationFormCommand: (
|
|
887
|
+
input: DeleteEvaluationFormCommandInput,
|
|
888
|
+
context: __SerdeContext
|
|
889
|
+
) => Promise<__HttpRequest>;
|
|
814
890
|
export declare const se_DeleteHoursOfOperationCommand: (
|
|
815
891
|
input: DeleteHoursOfOperationCommandInput,
|
|
816
892
|
context: __SerdeContext
|
|
@@ -867,6 +943,10 @@ export declare const se_DescribeContactCommand: (
|
|
|
867
943
|
input: DescribeContactCommandInput,
|
|
868
944
|
context: __SerdeContext
|
|
869
945
|
) => Promise<__HttpRequest>;
|
|
946
|
+
export declare const se_DescribeContactEvaluationCommand: (
|
|
947
|
+
input: DescribeContactEvaluationCommandInput,
|
|
948
|
+
context: __SerdeContext
|
|
949
|
+
) => Promise<__HttpRequest>;
|
|
870
950
|
export declare const se_DescribeContactFlowCommand: (
|
|
871
951
|
input: DescribeContactFlowCommandInput,
|
|
872
952
|
context: __SerdeContext
|
|
@@ -875,6 +955,10 @@ export declare const se_DescribeContactFlowModuleCommand: (
|
|
|
875
955
|
input: DescribeContactFlowModuleCommandInput,
|
|
876
956
|
context: __SerdeContext
|
|
877
957
|
) => Promise<__HttpRequest>;
|
|
958
|
+
export declare const se_DescribeEvaluationFormCommand: (
|
|
959
|
+
input: DescribeEvaluationFormCommandInput,
|
|
960
|
+
context: __SerdeContext
|
|
961
|
+
) => Promise<__HttpRequest>;
|
|
878
962
|
export declare const se_DescribeHoursOfOperationCommand: (
|
|
879
963
|
input: DescribeHoursOfOperationCommandInput,
|
|
880
964
|
context: __SerdeContext
|
|
@@ -1019,6 +1103,10 @@ export declare const se_ListBotsCommand: (
|
|
|
1019
1103
|
input: ListBotsCommandInput,
|
|
1020
1104
|
context: __SerdeContext
|
|
1021
1105
|
) => Promise<__HttpRequest>;
|
|
1106
|
+
export declare const se_ListContactEvaluationsCommand: (
|
|
1107
|
+
input: ListContactEvaluationsCommandInput,
|
|
1108
|
+
context: __SerdeContext
|
|
1109
|
+
) => Promise<__HttpRequest>;
|
|
1022
1110
|
export declare const se_ListContactFlowModulesCommand: (
|
|
1023
1111
|
input: ListContactFlowModulesCommandInput,
|
|
1024
1112
|
context: __SerdeContext
|
|
@@ -1035,6 +1123,14 @@ export declare const se_ListDefaultVocabulariesCommand: (
|
|
|
1035
1123
|
input: ListDefaultVocabulariesCommandInput,
|
|
1036
1124
|
context: __SerdeContext
|
|
1037
1125
|
) => Promise<__HttpRequest>;
|
|
1126
|
+
export declare const se_ListEvaluationFormsCommand: (
|
|
1127
|
+
input: ListEvaluationFormsCommandInput,
|
|
1128
|
+
context: __SerdeContext
|
|
1129
|
+
) => Promise<__HttpRequest>;
|
|
1130
|
+
export declare const se_ListEvaluationFormVersionsCommand: (
|
|
1131
|
+
input: ListEvaluationFormVersionsCommandInput,
|
|
1132
|
+
context: __SerdeContext
|
|
1133
|
+
) => Promise<__HttpRequest>;
|
|
1038
1134
|
export declare const se_ListHoursOfOperationsCommand: (
|
|
1039
1135
|
input: ListHoursOfOperationsCommandInput,
|
|
1040
1136
|
context: __SerdeContext
|
|
@@ -1183,6 +1279,10 @@ export declare const se_StartChatContactCommand: (
|
|
|
1183
1279
|
input: StartChatContactCommandInput,
|
|
1184
1280
|
context: __SerdeContext
|
|
1185
1281
|
) => Promise<__HttpRequest>;
|
|
1282
|
+
export declare const se_StartContactEvaluationCommand: (
|
|
1283
|
+
input: StartContactEvaluationCommandInput,
|
|
1284
|
+
context: __SerdeContext
|
|
1285
|
+
) => Promise<__HttpRequest>;
|
|
1186
1286
|
export declare const se_StartContactRecordingCommand: (
|
|
1187
1287
|
input: StartContactRecordingCommandInput,
|
|
1188
1288
|
context: __SerdeContext
|
|
@@ -1211,6 +1311,10 @@ export declare const se_StopContactStreamingCommand: (
|
|
|
1211
1311
|
input: StopContactStreamingCommandInput,
|
|
1212
1312
|
context: __SerdeContext
|
|
1213
1313
|
) => Promise<__HttpRequest>;
|
|
1314
|
+
export declare const se_SubmitContactEvaluationCommand: (
|
|
1315
|
+
input: SubmitContactEvaluationCommandInput,
|
|
1316
|
+
context: __SerdeContext
|
|
1317
|
+
) => Promise<__HttpRequest>;
|
|
1214
1318
|
export declare const se_SuspendContactRecordingCommand: (
|
|
1215
1319
|
input: SuspendContactRecordingCommandInput,
|
|
1216
1320
|
context: __SerdeContext
|
|
@@ -1239,6 +1343,10 @@ export declare const se_UpdateContactAttributesCommand: (
|
|
|
1239
1343
|
input: UpdateContactAttributesCommandInput,
|
|
1240
1344
|
context: __SerdeContext
|
|
1241
1345
|
) => Promise<__HttpRequest>;
|
|
1346
|
+
export declare const se_UpdateContactEvaluationCommand: (
|
|
1347
|
+
input: UpdateContactEvaluationCommandInput,
|
|
1348
|
+
context: __SerdeContext
|
|
1349
|
+
) => Promise<__HttpRequest>;
|
|
1242
1350
|
export declare const se_UpdateContactFlowContentCommand: (
|
|
1243
1351
|
input: UpdateContactFlowContentCommandInput,
|
|
1244
1352
|
context: __SerdeContext
|
|
@@ -1263,6 +1371,10 @@ export declare const se_UpdateContactScheduleCommand: (
|
|
|
1263
1371
|
input: UpdateContactScheduleCommandInput,
|
|
1264
1372
|
context: __SerdeContext
|
|
1265
1373
|
) => Promise<__HttpRequest>;
|
|
1374
|
+
export declare const se_UpdateEvaluationFormCommand: (
|
|
1375
|
+
input: UpdateEvaluationFormCommandInput,
|
|
1376
|
+
context: __SerdeContext
|
|
1377
|
+
) => Promise<__HttpRequest>;
|
|
1266
1378
|
export declare const se_UpdateHoursOfOperationCommand: (
|
|
1267
1379
|
input: UpdateHoursOfOperationCommandInput,
|
|
1268
1380
|
context: __SerdeContext
|
|
@@ -1371,6 +1483,10 @@ export declare const se_UpdateUserSecurityProfilesCommand: (
|
|
|
1371
1483
|
input: UpdateUserSecurityProfilesCommandInput,
|
|
1372
1484
|
context: __SerdeContext
|
|
1373
1485
|
) => Promise<__HttpRequest>;
|
|
1486
|
+
export declare const de_ActivateEvaluationFormCommand: (
|
|
1487
|
+
output: __HttpResponse,
|
|
1488
|
+
context: __SerdeContext
|
|
1489
|
+
) => Promise<ActivateEvaluationFormCommandOutput>;
|
|
1374
1490
|
export declare const de_AssociateApprovedOriginCommand: (
|
|
1375
1491
|
output: __HttpResponse,
|
|
1376
1492
|
context: __SerdeContext
|
|
@@ -1427,6 +1543,10 @@ export declare const de_CreateContactFlowModuleCommand: (
|
|
|
1427
1543
|
output: __HttpResponse,
|
|
1428
1544
|
context: __SerdeContext
|
|
1429
1545
|
) => Promise<CreateContactFlowModuleCommandOutput>;
|
|
1546
|
+
export declare const de_CreateEvaluationFormCommand: (
|
|
1547
|
+
output: __HttpResponse,
|
|
1548
|
+
context: __SerdeContext
|
|
1549
|
+
) => Promise<CreateEvaluationFormCommandOutput>;
|
|
1430
1550
|
export declare const de_CreateHoursOfOperationCommand: (
|
|
1431
1551
|
output: __HttpResponse,
|
|
1432
1552
|
context: __SerdeContext
|
|
@@ -1487,6 +1607,14 @@ export declare const de_CreateVocabularyCommand: (
|
|
|
1487
1607
|
output: __HttpResponse,
|
|
1488
1608
|
context: __SerdeContext
|
|
1489
1609
|
) => Promise<CreateVocabularyCommandOutput>;
|
|
1610
|
+
export declare const de_DeactivateEvaluationFormCommand: (
|
|
1611
|
+
output: __HttpResponse,
|
|
1612
|
+
context: __SerdeContext
|
|
1613
|
+
) => Promise<DeactivateEvaluationFormCommandOutput>;
|
|
1614
|
+
export declare const de_DeleteContactEvaluationCommand: (
|
|
1615
|
+
output: __HttpResponse,
|
|
1616
|
+
context: __SerdeContext
|
|
1617
|
+
) => Promise<DeleteContactEvaluationCommandOutput>;
|
|
1490
1618
|
export declare const de_DeleteContactFlowCommand: (
|
|
1491
1619
|
output: __HttpResponse,
|
|
1492
1620
|
context: __SerdeContext
|
|
@@ -1495,6 +1623,10 @@ export declare const de_DeleteContactFlowModuleCommand: (
|
|
|
1495
1623
|
output: __HttpResponse,
|
|
1496
1624
|
context: __SerdeContext
|
|
1497
1625
|
) => Promise<DeleteContactFlowModuleCommandOutput>;
|
|
1626
|
+
export declare const de_DeleteEvaluationFormCommand: (
|
|
1627
|
+
output: __HttpResponse,
|
|
1628
|
+
context: __SerdeContext
|
|
1629
|
+
) => Promise<DeleteEvaluationFormCommandOutput>;
|
|
1498
1630
|
export declare const de_DeleteHoursOfOperationCommand: (
|
|
1499
1631
|
output: __HttpResponse,
|
|
1500
1632
|
context: __SerdeContext
|
|
@@ -1551,6 +1683,10 @@ export declare const de_DescribeContactCommand: (
|
|
|
1551
1683
|
output: __HttpResponse,
|
|
1552
1684
|
context: __SerdeContext
|
|
1553
1685
|
) => Promise<DescribeContactCommandOutput>;
|
|
1686
|
+
export declare const de_DescribeContactEvaluationCommand: (
|
|
1687
|
+
output: __HttpResponse,
|
|
1688
|
+
context: __SerdeContext
|
|
1689
|
+
) => Promise<DescribeContactEvaluationCommandOutput>;
|
|
1554
1690
|
export declare const de_DescribeContactFlowCommand: (
|
|
1555
1691
|
output: __HttpResponse,
|
|
1556
1692
|
context: __SerdeContext
|
|
@@ -1559,6 +1695,10 @@ export declare const de_DescribeContactFlowModuleCommand: (
|
|
|
1559
1695
|
output: __HttpResponse,
|
|
1560
1696
|
context: __SerdeContext
|
|
1561
1697
|
) => Promise<DescribeContactFlowModuleCommandOutput>;
|
|
1698
|
+
export declare const de_DescribeEvaluationFormCommand: (
|
|
1699
|
+
output: __HttpResponse,
|
|
1700
|
+
context: __SerdeContext
|
|
1701
|
+
) => Promise<DescribeEvaluationFormCommandOutput>;
|
|
1562
1702
|
export declare const de_DescribeHoursOfOperationCommand: (
|
|
1563
1703
|
output: __HttpResponse,
|
|
1564
1704
|
context: __SerdeContext
|
|
@@ -1703,6 +1843,10 @@ export declare const de_ListBotsCommand: (
|
|
|
1703
1843
|
output: __HttpResponse,
|
|
1704
1844
|
context: __SerdeContext
|
|
1705
1845
|
) => Promise<ListBotsCommandOutput>;
|
|
1846
|
+
export declare const de_ListContactEvaluationsCommand: (
|
|
1847
|
+
output: __HttpResponse,
|
|
1848
|
+
context: __SerdeContext
|
|
1849
|
+
) => Promise<ListContactEvaluationsCommandOutput>;
|
|
1706
1850
|
export declare const de_ListContactFlowModulesCommand: (
|
|
1707
1851
|
output: __HttpResponse,
|
|
1708
1852
|
context: __SerdeContext
|
|
@@ -1719,6 +1863,14 @@ export declare const de_ListDefaultVocabulariesCommand: (
|
|
|
1719
1863
|
output: __HttpResponse,
|
|
1720
1864
|
context: __SerdeContext
|
|
1721
1865
|
) => Promise<ListDefaultVocabulariesCommandOutput>;
|
|
1866
|
+
export declare const de_ListEvaluationFormsCommand: (
|
|
1867
|
+
output: __HttpResponse,
|
|
1868
|
+
context: __SerdeContext
|
|
1869
|
+
) => Promise<ListEvaluationFormsCommandOutput>;
|
|
1870
|
+
export declare const de_ListEvaluationFormVersionsCommand: (
|
|
1871
|
+
output: __HttpResponse,
|
|
1872
|
+
context: __SerdeContext
|
|
1873
|
+
) => Promise<ListEvaluationFormVersionsCommandOutput>;
|
|
1722
1874
|
export declare const de_ListHoursOfOperationsCommand: (
|
|
1723
1875
|
output: __HttpResponse,
|
|
1724
1876
|
context: __SerdeContext
|
|
@@ -1867,6 +2019,10 @@ export declare const de_StartChatContactCommand: (
|
|
|
1867
2019
|
output: __HttpResponse,
|
|
1868
2020
|
context: __SerdeContext
|
|
1869
2021
|
) => Promise<StartChatContactCommandOutput>;
|
|
2022
|
+
export declare const de_StartContactEvaluationCommand: (
|
|
2023
|
+
output: __HttpResponse,
|
|
2024
|
+
context: __SerdeContext
|
|
2025
|
+
) => Promise<StartContactEvaluationCommandOutput>;
|
|
1870
2026
|
export declare const de_StartContactRecordingCommand: (
|
|
1871
2027
|
output: __HttpResponse,
|
|
1872
2028
|
context: __SerdeContext
|
|
@@ -1895,6 +2051,10 @@ export declare const de_StopContactStreamingCommand: (
|
|
|
1895
2051
|
output: __HttpResponse,
|
|
1896
2052
|
context: __SerdeContext
|
|
1897
2053
|
) => Promise<StopContactStreamingCommandOutput>;
|
|
2054
|
+
export declare const de_SubmitContactEvaluationCommand: (
|
|
2055
|
+
output: __HttpResponse,
|
|
2056
|
+
context: __SerdeContext
|
|
2057
|
+
) => Promise<SubmitContactEvaluationCommandOutput>;
|
|
1898
2058
|
export declare const de_SuspendContactRecordingCommand: (
|
|
1899
2059
|
output: __HttpResponse,
|
|
1900
2060
|
context: __SerdeContext
|
|
@@ -1923,6 +2083,10 @@ export declare const de_UpdateContactAttributesCommand: (
|
|
|
1923
2083
|
output: __HttpResponse,
|
|
1924
2084
|
context: __SerdeContext
|
|
1925
2085
|
) => Promise<UpdateContactAttributesCommandOutput>;
|
|
2086
|
+
export declare const de_UpdateContactEvaluationCommand: (
|
|
2087
|
+
output: __HttpResponse,
|
|
2088
|
+
context: __SerdeContext
|
|
2089
|
+
) => Promise<UpdateContactEvaluationCommandOutput>;
|
|
1926
2090
|
export declare const de_UpdateContactFlowContentCommand: (
|
|
1927
2091
|
output: __HttpResponse,
|
|
1928
2092
|
context: __SerdeContext
|
|
@@ -1947,6 +2111,10 @@ export declare const de_UpdateContactScheduleCommand: (
|
|
|
1947
2111
|
output: __HttpResponse,
|
|
1948
2112
|
context: __SerdeContext
|
|
1949
2113
|
) => Promise<UpdateContactScheduleCommandOutput>;
|
|
2114
|
+
export declare const de_UpdateEvaluationFormCommand: (
|
|
2115
|
+
output: __HttpResponse,
|
|
2116
|
+
context: __SerdeContext
|
|
2117
|
+
) => Promise<UpdateEvaluationFormCommandOutput>;
|
|
1950
2118
|
export declare const de_UpdateHoursOfOperationCommand: (
|
|
1951
2119
|
output: __HttpResponse,
|
|
1952
2120
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.320.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|