@aws-sdk/client-connect 3.1072.0 → 3.1074.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 +14 -0
- package/dist-cjs/index.js +54 -1
- package/dist-cjs/schemas/schemas_0.js +197 -48
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/GetEvaluationFormValidationCommand.js +16 -0
- package/dist-es/commands/StartEvaluationFormValidationCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +20 -0
- package/dist-es/models/models_4.js +1 -0
- package/dist-es/schemas/schemas_0.js +183 -48
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/CreateEvaluationFormCommand.d.ts +65 -1
- package/dist-types/commands/CreateViewCommand.d.ts +2 -1
- package/dist-types/commands/CreateViewVersionCommand.d.ts +1 -1
- package/dist-types/commands/CreateVocabularyCommand.d.ts +1 -2
- package/dist-types/commands/DescribeContactCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +72 -2
- package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +68 -2
- package/dist-types/commands/GetEvaluationFormValidationCommand.d.ts +112 -0
- package/dist-types/commands/GetMetricDataV2Command.d.ts +1 -2
- package/dist-types/commands/ListContactEvaluationsCommand.d.ts +3 -0
- package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +37 -0
- package/dist-types/commands/SearchContactsCommand.d.ts +1 -1
- package/dist-types/commands/SearchEvaluationFormsCommand.d.ts +1 -2
- package/dist-types/commands/SearchHoursOfOperationOverridesCommand.d.ts +1 -2
- package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +1 -2
- package/dist-types/commands/SearchNotificationsCommand.d.ts +1 -2
- package/dist-types/commands/SearchPredefinedAttributesCommand.d.ts +1 -2
- package/dist-types/commands/StartEvaluationFormValidationCommand.d.ts +102 -0
- package/dist-types/commands/UpdateContactRoutingDataCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +67 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +60 -0
- package/dist-types/models/models_0.d.ts +127 -103
- package/dist-types/models/models_1.d.ts +217 -1947
- package/dist-types/models/models_2.d.ts +2078 -384
- package/dist-types/models/models_3.d.ts +1479 -1769
- package/dist-types/models/models_4.d.ts +707 -0
- package/dist-types/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateViewCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateViewVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateVocabularyCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeContactEvaluationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEvaluationFormCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluationFormValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetMetricDataV2Command.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchContactsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchEvaluationFormsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchHoursOfOperationOverridesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchHoursOfOperationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchNotificationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchPredefinedAttributesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartEvaluationFormValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateContactRoutingDataCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateEvaluationFormCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +30 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -23
- package/dist-types/ts3.4/models/models_1.d.ts +50 -45
- package/dist-types/ts3.4/models/models_2.d.ts +75 -81
- package/dist-types/ts3.4/models/models_3.d.ts +96 -175
- package/dist-types/ts3.4/models/models_4.d.ts +197 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
- package/package.json +3 -3
package/dist-es/Connect.js
CHANGED
|
@@ -165,6 +165,7 @@ import { GetContactMetricsCommand, } from "./commands/GetContactMetricsCommand";
|
|
|
165
165
|
import { GetCurrentMetricDataCommand, } from "./commands/GetCurrentMetricDataCommand";
|
|
166
166
|
import { GetCurrentUserDataCommand, } from "./commands/GetCurrentUserDataCommand";
|
|
167
167
|
import { GetEffectiveHoursOfOperationsCommand, } from "./commands/GetEffectiveHoursOfOperationsCommand";
|
|
168
|
+
import { GetEvaluationFormValidationCommand, } from "./commands/GetEvaluationFormValidationCommand";
|
|
168
169
|
import { GetFederationTokenCommand, } from "./commands/GetFederationTokenCommand";
|
|
169
170
|
import { GetFlowAssociationCommand, } from "./commands/GetFlowAssociationCommand";
|
|
170
171
|
import { GetMetricDataCommand, } from "./commands/GetMetricDataCommand";
|
|
@@ -286,6 +287,7 @@ import { StartContactMediaProcessingCommand, } from "./commands/StartContactMedi
|
|
|
286
287
|
import { StartContactRecordingCommand, } from "./commands/StartContactRecordingCommand";
|
|
287
288
|
import { StartContactStreamingCommand, } from "./commands/StartContactStreamingCommand";
|
|
288
289
|
import { StartEmailContactCommand, } from "./commands/StartEmailContactCommand";
|
|
290
|
+
import { StartEvaluationFormValidationCommand, } from "./commands/StartEvaluationFormValidationCommand";
|
|
289
291
|
import { StartOutboundChatContactCommand, } from "./commands/StartOutboundChatContactCommand";
|
|
290
292
|
import { StartOutboundEmailContactCommand, } from "./commands/StartOutboundEmailContactCommand";
|
|
291
293
|
import { StartOutboundVoiceContactCommand, } from "./commands/StartOutboundVoiceContactCommand";
|
|
@@ -623,6 +625,7 @@ const commands = {
|
|
|
623
625
|
GetCurrentMetricDataCommand,
|
|
624
626
|
GetCurrentUserDataCommand,
|
|
625
627
|
GetEffectiveHoursOfOperationsCommand,
|
|
628
|
+
GetEvaluationFormValidationCommand,
|
|
626
629
|
GetFederationTokenCommand,
|
|
627
630
|
GetFlowAssociationCommand,
|
|
628
631
|
GetMetricDataCommand,
|
|
@@ -744,6 +747,7 @@ const commands = {
|
|
|
744
747
|
StartContactRecordingCommand,
|
|
745
748
|
StartContactStreamingCommand,
|
|
746
749
|
StartEmailContactCommand,
|
|
750
|
+
StartEvaluationFormValidationCommand,
|
|
747
751
|
StartOutboundChatContactCommand,
|
|
748
752
|
StartOutboundEmailContactCommand,
|
|
749
753
|
StartOutboundVoiceContactCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetEvaluationFormValidation$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetEvaluationFormValidationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonConnectService", "GetEvaluationFormValidation", {})
|
|
13
|
+
.n("ConnectClient", "GetEvaluationFormValidationCommand")
|
|
14
|
+
.sc(GetEvaluationFormValidation$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StartEvaluationFormValidation$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StartEvaluationFormValidationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonConnectService", "StartEvaluationFormValidation", {})
|
|
13
|
+
.n("ConnectClient", "StartEvaluationFormValidationCommand")
|
|
14
|
+
.sc(StartEvaluationFormValidation$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -164,6 +164,7 @@ export * from "./GetContactMetricsCommand";
|
|
|
164
164
|
export * from "./GetCurrentMetricDataCommand";
|
|
165
165
|
export * from "./GetCurrentUserDataCommand";
|
|
166
166
|
export * from "./GetEffectiveHoursOfOperationsCommand";
|
|
167
|
+
export * from "./GetEvaluationFormValidationCommand";
|
|
167
168
|
export * from "./GetFederationTokenCommand";
|
|
168
169
|
export * from "./GetFlowAssociationCommand";
|
|
169
170
|
export * from "./GetMetricDataCommand";
|
|
@@ -285,6 +286,7 @@ export * from "./StartContactMediaProcessingCommand";
|
|
|
285
286
|
export * from "./StartContactRecordingCommand";
|
|
286
287
|
export * from "./StartContactStreamingCommand";
|
|
287
288
|
export * from "./StartEmailContactCommand";
|
|
289
|
+
export * from "./StartEvaluationFormValidationCommand";
|
|
288
290
|
export * from "./StartOutboundChatContactCommand";
|
|
289
291
|
export * from "./StartOutboundEmailContactCommand";
|
|
290
292
|
export * from "./StartOutboundVoiceContactCommand";
|
package/dist-es/index.js
CHANGED
package/dist-es/models/enums.js
CHANGED
|
@@ -336,6 +336,10 @@ export const EvaluationFormSingleSelectQuestionDisplayMode = {
|
|
|
336
336
|
DROPDOWN: "DROPDOWN",
|
|
337
337
|
RADIO: "RADIO",
|
|
338
338
|
};
|
|
339
|
+
export const PerformanceCategoryName = {
|
|
340
|
+
EXCEEDS_EXPECTATIONS: "EXCEEDS_EXPECTATIONS",
|
|
341
|
+
NEEDS_IMPROVEMENT: "NEEDS_IMPROVEMENT",
|
|
342
|
+
};
|
|
339
343
|
export const EvaluationFormLanguageCode = {
|
|
340
344
|
DE_DE: "de-DE",
|
|
341
345
|
EN_US: "en-US",
|
|
@@ -351,6 +355,7 @@ export const EvaluationReviewNotificationRecipientType = {
|
|
|
351
355
|
USER_ID: "USER_ID",
|
|
352
356
|
};
|
|
353
357
|
export const EvaluationFormScoringMode = {
|
|
358
|
+
POINTS_BASED: "POINTS_BASED",
|
|
354
359
|
QUESTION_ONLY: "QUESTION_ONLY",
|
|
355
360
|
SECTION_ONLY: "SECTION_ONLY",
|
|
356
361
|
};
|
|
@@ -683,6 +688,11 @@ export const ContactFlowModuleStatus = {
|
|
|
683
688
|
PUBLISHED: "PUBLISHED",
|
|
684
689
|
SAVED: "SAVED",
|
|
685
690
|
};
|
|
691
|
+
export const EvaluationFormValidationStatus = {
|
|
692
|
+
COMPLETED: "COMPLETED",
|
|
693
|
+
FAILED: "FAILED",
|
|
694
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
695
|
+
};
|
|
686
696
|
export const EvaluationFormVersionStatus = {
|
|
687
697
|
ACTIVE: "ACTIVE",
|
|
688
698
|
DRAFT: "DRAFT",
|
|
@@ -1032,6 +1042,10 @@ export const OperationalStatus = {
|
|
|
1032
1042
|
CLOSED: "CLOSED",
|
|
1033
1043
|
OPEN: "OPEN",
|
|
1034
1044
|
};
|
|
1045
|
+
export const EvaluationFormValidationFindingSeverity = {
|
|
1046
|
+
ERROR: "ERROR",
|
|
1047
|
+
WARNING: "WARNING",
|
|
1048
|
+
};
|
|
1035
1049
|
export const HistoricalMetricName = {
|
|
1036
1050
|
ABANDON_TIME: "ABANDON_TIME",
|
|
1037
1051
|
AFTER_CONTACT_WORK_TIME: "AFTER_CONTACT_WORK_TIME",
|
|
@@ -1186,6 +1200,12 @@ export const NumberComparisonType = {
|
|
|
1186
1200
|
NOT_EQUAL: "NOT_EQUAL",
|
|
1187
1201
|
RANGE: "RANGE",
|
|
1188
1202
|
};
|
|
1203
|
+
export const ContactEvaluationAttributeKey = {
|
|
1204
|
+
CONTACT_AGENT_ID: "ContactAgentId",
|
|
1205
|
+
};
|
|
1206
|
+
export const ContactEvaluationAttributeComparisonType = {
|
|
1207
|
+
EXACT: "EXACT",
|
|
1208
|
+
};
|
|
1189
1209
|
export const SearchContactsTimeRangeType = {
|
|
1190
1210
|
CONNECTED_TO_AGENT_TIMESTAMP: "CONNECTED_TO_AGENT_TIMESTAMP",
|
|
1191
1211
|
DISCONNECT_TIMESTAMP: "DISCONNECT_TIMESTAMP",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|