@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,3 +1,4 @@
|
|
|
1
|
+
export * from "./ActivateEvaluationFormCommand";
|
|
1
2
|
export * from "./AssociateApprovedOriginCommand";
|
|
2
3
|
export * from "./AssociateBotCommand";
|
|
3
4
|
export * from "./AssociateDefaultVocabularyCommand";
|
|
@@ -12,6 +13,7 @@ export * from "./ClaimPhoneNumberCommand";
|
|
|
12
13
|
export * from "./CreateAgentStatusCommand";
|
|
13
14
|
export * from "./CreateContactFlowCommand";
|
|
14
15
|
export * from "./CreateContactFlowModuleCommand";
|
|
16
|
+
export * from "./CreateEvaluationFormCommand";
|
|
15
17
|
export * from "./CreateHoursOfOperationCommand";
|
|
16
18
|
export * from "./CreateInstanceCommand";
|
|
17
19
|
export * from "./CreateIntegrationAssociationCommand";
|
|
@@ -27,8 +29,11 @@ export * from "./CreateUseCaseCommand";
|
|
|
27
29
|
export * from "./CreateUserCommand";
|
|
28
30
|
export * from "./CreateUserHierarchyGroupCommand";
|
|
29
31
|
export * from "./CreateVocabularyCommand";
|
|
32
|
+
export * from "./DeactivateEvaluationFormCommand";
|
|
33
|
+
export * from "./DeleteContactEvaluationCommand";
|
|
30
34
|
export * from "./DeleteContactFlowCommand";
|
|
31
35
|
export * from "./DeleteContactFlowModuleCommand";
|
|
36
|
+
export * from "./DeleteEvaluationFormCommand";
|
|
32
37
|
export * from "./DeleteHoursOfOperationCommand";
|
|
33
38
|
export * from "./DeleteInstanceCommand";
|
|
34
39
|
export * from "./DeleteIntegrationAssociationCommand";
|
|
@@ -43,8 +48,10 @@ export * from "./DeleteUserHierarchyGroupCommand";
|
|
|
43
48
|
export * from "./DeleteVocabularyCommand";
|
|
44
49
|
export * from "./DescribeAgentStatusCommand";
|
|
45
50
|
export * from "./DescribeContactCommand";
|
|
51
|
+
export * from "./DescribeContactEvaluationCommand";
|
|
46
52
|
export * from "./DescribeContactFlowCommand";
|
|
47
53
|
export * from "./DescribeContactFlowModuleCommand";
|
|
54
|
+
export * from "./DescribeEvaluationFormCommand";
|
|
48
55
|
export * from "./DescribeHoursOfOperationCommand";
|
|
49
56
|
export * from "./DescribeInstanceAttributeCommand";
|
|
50
57
|
export * from "./DescribeInstanceCommand";
|
|
@@ -81,10 +88,13 @@ export * from "./GetTrafficDistributionCommand";
|
|
|
81
88
|
export * from "./ListAgentStatusesCommand";
|
|
82
89
|
export * from "./ListApprovedOriginsCommand";
|
|
83
90
|
export * from "./ListBotsCommand";
|
|
91
|
+
export * from "./ListContactEvaluationsCommand";
|
|
84
92
|
export * from "./ListContactFlowModulesCommand";
|
|
85
93
|
export * from "./ListContactFlowsCommand";
|
|
86
94
|
export * from "./ListContactReferencesCommand";
|
|
87
95
|
export * from "./ListDefaultVocabulariesCommand";
|
|
96
|
+
export * from "./ListEvaluationFormVersionsCommand";
|
|
97
|
+
export * from "./ListEvaluationFormsCommand";
|
|
88
98
|
export * from "./ListHoursOfOperationsCommand";
|
|
89
99
|
export * from "./ListInstanceAttributesCommand";
|
|
90
100
|
export * from "./ListInstanceStorageConfigsCommand";
|
|
@@ -122,6 +132,7 @@ export * from "./SearchSecurityProfilesCommand";
|
|
|
122
132
|
export * from "./SearchUsersCommand";
|
|
123
133
|
export * from "./SearchVocabulariesCommand";
|
|
124
134
|
export * from "./StartChatContactCommand";
|
|
135
|
+
export * from "./StartContactEvaluationCommand";
|
|
125
136
|
export * from "./StartContactRecordingCommand";
|
|
126
137
|
export * from "./StartContactStreamingCommand";
|
|
127
138
|
export * from "./StartOutboundVoiceContactCommand";
|
|
@@ -129,6 +140,7 @@ export * from "./StartTaskContactCommand";
|
|
|
129
140
|
export * from "./StopContactCommand";
|
|
130
141
|
export * from "./StopContactRecordingCommand";
|
|
131
142
|
export * from "./StopContactStreamingCommand";
|
|
143
|
+
export * from "./SubmitContactEvaluationCommand";
|
|
132
144
|
export * from "./SuspendContactRecordingCommand";
|
|
133
145
|
export * from "./TagResourceCommand";
|
|
134
146
|
export * from "./TransferContactCommand";
|
|
@@ -136,12 +148,14 @@ export * from "./UntagResourceCommand";
|
|
|
136
148
|
export * from "./UpdateAgentStatusCommand";
|
|
137
149
|
export * from "./UpdateContactAttributesCommand";
|
|
138
150
|
export * from "./UpdateContactCommand";
|
|
151
|
+
export * from "./UpdateContactEvaluationCommand";
|
|
139
152
|
export * from "./UpdateContactFlowContentCommand";
|
|
140
153
|
export * from "./UpdateContactFlowMetadataCommand";
|
|
141
154
|
export * from "./UpdateContactFlowModuleContentCommand";
|
|
142
155
|
export * from "./UpdateContactFlowModuleMetadataCommand";
|
|
143
156
|
export * from "./UpdateContactFlowNameCommand";
|
|
144
157
|
export * from "./UpdateContactScheduleCommand";
|
|
158
|
+
export * from "./UpdateEvaluationFormCommand";
|
|
145
159
|
export * from "./UpdateHoursOfOperationCommand";
|
|
146
160
|
export * from "./UpdateInstanceAttributeCommand";
|
|
147
161
|
export * from "./UpdateInstanceStorageConfigCommand";
|