@aws-sdk/client-connect 3.970.0 → 3.971.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/dist-cjs/index.js +72 -17
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +61 -17
- package/dist-types/commands/CreateEvaluationFormCommand.d.ts +11 -0
- package/dist-types/commands/DeleteAttachedFileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteContactEvaluationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +24 -1
- package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +11 -0
- package/dist-types/commands/ListChildHoursOfOperationsCommand.d.ts +1 -1
- package/dist-types/commands/ListContactEvaluationsCommand.d.ts +2 -3
- package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/commands/StartContactEvaluationCommand.d.ts +1 -1
- package/dist-types/commands/StartContactMediaProcessingCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +11 -0
- package/dist-types/models/enums.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +44 -47
- package/dist-types/models/models_1.d.ts +98 -178
- package/dist-types/models/models_2.d.ts +180 -103
- package/dist-types/models/models_3.d.ts +124 -3
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/commands/DeleteAttachedFileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteContactEvaluationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListChildHoursOfOperationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListContactEvaluationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartContactEvaluationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartContactMediaProcessingCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -10
- package/dist-types/ts3.4/models/models_1.d.ts +22 -39
- package/dist-types/ts3.4/models/models_2.d.ts +42 -27
- package/dist-types/ts3.4/models/models_3.d.ts +32 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +3 -3
|
@@ -1,6 +1,184 @@
|
|
|
1
|
-
import { ArtifactStatus, AutoEvaluationStatus, BooleanComparisonType, Channel, ChatEventType, ContactFlowModuleState, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactInteractionType,
|
|
1
|
+
import { ArtifactStatus, AutoEvaluationStatus, BooleanComparisonType, Channel, ChatEventType, ContactFlowModuleState, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactParticipantRole, ContactRecordingType, DataTableAttributeValueType, DateComparisonType, DateTimeComparisonType, DecimalComparisonType, DirectoryType, EntityType, EvaluationFormLanguageCode, EvaluationFormVersionStatus, EvaluationStatus, EvaluationType, EventSourceName, FileStatusType, FileUseCaseType, HierarchyGroupMatchType, InstanceStatus, InstanceStorageResourceType, IntegrationType, ListFlowAssociationResourceType, MediaType, MonitorCapability, NumberComparisonType, OutboundMessageSourceType, ParticipantRole, PhoneNumberCountryCode, PhoneNumberType, QueueType, QuickConnectType, RealTimeContactAnalysisOutputType, RealTimeContactAnalysisPostContactSummaryFailureCode, RealTimeContactAnalysisPostContactSummaryStatus, RealTimeContactAnalysisSegmentType, RealTimeContactAnalysisSentimentLabel, RealTimeContactAnalysisStatus, RealTimeContactAnalysisSupportedChannel, ReferenceStatus, ReferenceType, RehydrationType, ResponseMode, RulePublishStatus, SearchContactsMatchType, SearchContactsTimeRangeConditionType, SearchContactsTimeRangeType, SortableFieldName, SortOrder, SourceType, StringComparisonType, TargetListType, TaskTemplateStatus, TrafficDistributionGroupStatus, TrafficType, UseCaseType, ViewStatus, ViewType, Visibility, VocabularyLanguageCode, VocabularyState } from "./enums";
|
|
2
2
|
import { type AgentHierarchyGroups, type ControlPlaneAttributeFilter, type CreatedByInfo, type DataTableLockVersion, type StringCondition, type UserPhoneConfig, ActionSummary, AgentStatus, AliasConfiguration, Application, FlowAssociationSummary, FlowModule, InstanceStorageConfig, LexBot, PrimaryValueResponse, SecurityProfileItem, TagCondition, UserProficiency, View } from "./models_0";
|
|
3
|
-
import { Attribute, ContactFlow, ContactFlowModule, DataTable, DataTableAttribute,
|
|
3
|
+
import { type EvaluationContactParticipant, type EvaluationScore, Attribute, ContactFlow, ContactFlowModule, DataTable, DataTableAttribute, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, HoursOfOperationOverride, HoursOfOperationsIdentifier, PredefinedAttribute, Prompt, Queue, QuickConnect, RoutingProfile } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface ListChildHoursOfOperationsRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in
|
|
10
|
+
* the Amazon Resource Name (ARN) of the instance.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
InstanceId: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The identifier of the parent hours of operation.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
HoursOfOperationId: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
21
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
NextToken?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
MaxResults?: number | undefined;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export interface ListChildHoursOfOperationsResponse {
|
|
35
|
+
/**
|
|
36
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
NextToken?: string | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* <p>Information about the hours of operation.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
ChildHoursOfOperationsSummaryList?: HoursOfOperationsIdentifier[] | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>The timestamp when this resource was last modified.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
LastModifiedTime?: Date | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
LastModifiedRegion?: string | undefined;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export interface ListContactEvaluationsRequest {
|
|
60
|
+
/**
|
|
61
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
InstanceId: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>The identifier of the contact in this instance of Amazon Connect. </p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
ContactId: string | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
72
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
73
|
+
* <important>
|
|
74
|
+
* <p>This is not expected to be set because the value returned in the previous response is always null.</p>
|
|
75
|
+
* </important>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
NextToken?: string | undefined;
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* <p>Summary information about an evaluation acknowledgement.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export interface EvaluationAcknowledgementSummary {
|
|
85
|
+
/**
|
|
86
|
+
* <p>The time when an agent acknowledged the evaluation.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
AcknowledgedTime?: Date | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The agent who acknowledged the evaluation.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
AcknowledgedBy?: string | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>A comment from the agent when they confirmed they acknowledged the evaluation.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
AcknowledgerComment?: string | undefined;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* <p>Summary information about a contact evaluation.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export interface EvaluationSummary {
|
|
106
|
+
/**
|
|
107
|
+
* <p>A unique identifier for the contact evaluation.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
EvaluationId: string | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The Amazon Resource Name (ARN) for the contact evaluation resource.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
EvaluationArn: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* <p>A title of the evaluation form.</p>
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
EvaluationFormTitle: string | undefined;
|
|
121
|
+
/**
|
|
122
|
+
* <p>The unique identifier for the evaluation form.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
EvaluationFormId: string | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* <p>The calibration session ID that this evaluation belongs to.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
CalibrationSessionId?: string | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>The status of the contact evaluation.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
Status: EvaluationStatus | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* <p>Whether automated evaluation is enabled.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
AutoEvaluationEnabled?: boolean | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* <p>The status of the contact auto evaluation. </p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
AutoEvaluationStatus?: AutoEvaluationStatus | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* <p>The Amazon Resource Name (ARN) of the user who last updated the evaluation.</p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
EvaluatorArn: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* <p>The overall score of the contact evaluation.</p>
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
Score?: EvaluationScore | undefined;
|
|
156
|
+
/**
|
|
157
|
+
* <p>Information related to evaluation acknowledgement.</p>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
Acknowledgement?: EvaluationAcknowledgementSummary | undefined;
|
|
161
|
+
/**
|
|
162
|
+
* <p>Type of the evaluation. </p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
EvaluationType?: EvaluationType | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* <p>The timestamp for when the evaluation was created.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
CreatedTime: Date | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* <p>The timestamp for when the evaluation was last updated.</p>
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
LastModifiedTime: Date | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* <p>Information about a contact participant in the evaluation.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
ContactParticipant?: EvaluationContactParticipant | undefined;
|
|
181
|
+
}
|
|
4
182
|
/**
|
|
5
183
|
* @public
|
|
6
184
|
*/
|
|
@@ -7380,104 +7558,3 @@ export interface AutoEvaluationConfiguration {
|
|
|
7380
7558
|
*/
|
|
7381
7559
|
Enabled: boolean | undefined;
|
|
7382
7560
|
}
|
|
7383
|
-
/**
|
|
7384
|
-
* @public
|
|
7385
|
-
*/
|
|
7386
|
-
export interface StartContactEvaluationRequest {
|
|
7387
|
-
/**
|
|
7388
|
-
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
7389
|
-
* @public
|
|
7390
|
-
*/
|
|
7391
|
-
InstanceId: string | undefined;
|
|
7392
|
-
/**
|
|
7393
|
-
* <p>The identifier of the contact in this instance of Amazon Connect. </p>
|
|
7394
|
-
* @public
|
|
7395
|
-
*/
|
|
7396
|
-
ContactId: string | undefined;
|
|
7397
|
-
/**
|
|
7398
|
-
* <p>The unique identifier for the evaluation form.</p>
|
|
7399
|
-
* @public
|
|
7400
|
-
*/
|
|
7401
|
-
EvaluationFormId: string | undefined;
|
|
7402
|
-
/**
|
|
7403
|
-
* <p>Whether automated evaluations are enabled.</p>
|
|
7404
|
-
* @public
|
|
7405
|
-
*/
|
|
7406
|
-
AutoEvaluationConfiguration?: AutoEvaluationConfiguration | undefined;
|
|
7407
|
-
/**
|
|
7408
|
-
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
7409
|
-
* request. If not provided, the Amazon Web Services
|
|
7410
|
-
* SDK populates this field. For more information about idempotency, see
|
|
7411
|
-
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
7412
|
-
* @public
|
|
7413
|
-
*/
|
|
7414
|
-
ClientToken?: string | undefined;
|
|
7415
|
-
/**
|
|
7416
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
7417
|
-
* @public
|
|
7418
|
-
*/
|
|
7419
|
-
Tags?: Record<string, string> | undefined;
|
|
7420
|
-
}
|
|
7421
|
-
/**
|
|
7422
|
-
* @public
|
|
7423
|
-
*/
|
|
7424
|
-
export interface StartContactEvaluationResponse {
|
|
7425
|
-
/**
|
|
7426
|
-
* <p>A unique identifier for the contact evaluation.</p>
|
|
7427
|
-
* @public
|
|
7428
|
-
*/
|
|
7429
|
-
EvaluationId: string | undefined;
|
|
7430
|
-
/**
|
|
7431
|
-
* <p>The Amazon Resource Name (ARN) for the contact evaluation resource.</p>
|
|
7432
|
-
* @public
|
|
7433
|
-
*/
|
|
7434
|
-
EvaluationArn: string | undefined;
|
|
7435
|
-
}
|
|
7436
|
-
/**
|
|
7437
|
-
* @public
|
|
7438
|
-
*/
|
|
7439
|
-
export interface StartContactMediaProcessingRequest {
|
|
7440
|
-
/**
|
|
7441
|
-
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
7442
|
-
* @public
|
|
7443
|
-
*/
|
|
7444
|
-
InstanceId?: string | undefined;
|
|
7445
|
-
/**
|
|
7446
|
-
* <p>The identifier of the contact.</p>
|
|
7447
|
-
* @public
|
|
7448
|
-
*/
|
|
7449
|
-
ContactId?: string | undefined;
|
|
7450
|
-
/**
|
|
7451
|
-
* <p> The Amazon Resource Name (ARN) of the Lambda processor. You can find the Amazon Resource Name of the lambda in
|
|
7452
|
-
* the lambda console. </p>
|
|
7453
|
-
* @public
|
|
7454
|
-
*/
|
|
7455
|
-
ProcessorArn?: string | undefined;
|
|
7456
|
-
/**
|
|
7457
|
-
* <p> The desired behavior for failed message processing. </p>
|
|
7458
|
-
* @public
|
|
7459
|
-
*/
|
|
7460
|
-
FailureMode?: ContactMediaProcessingFailureMode | undefined;
|
|
7461
|
-
}
|
|
7462
|
-
/**
|
|
7463
|
-
* @public
|
|
7464
|
-
*/
|
|
7465
|
-
export interface StartContactMediaProcessingResponse {
|
|
7466
|
-
}
|
|
7467
|
-
/**
|
|
7468
|
-
* <p>Contains information about the recording configuration settings.</p>
|
|
7469
|
-
* @public
|
|
7470
|
-
*/
|
|
7471
|
-
export interface VoiceRecordingConfiguration {
|
|
7472
|
-
/**
|
|
7473
|
-
* <p>Identifies which track is being recorded.</p>
|
|
7474
|
-
* @public
|
|
7475
|
-
*/
|
|
7476
|
-
VoiceRecordingTrack?: VoiceRecordingTrack | undefined;
|
|
7477
|
-
/**
|
|
7478
|
-
* <p>Identifies which IVR track is being recorded.</p>
|
|
7479
|
-
* <p>One and only one of the track configurations should be presented in the request.</p>
|
|
7480
|
-
* @public
|
|
7481
|
-
*/
|
|
7482
|
-
IvrRecordingTrack?: IvrRecordingTrack | undefined;
|
|
7483
|
-
}
|
|
@@ -1,7 +1,108 @@
|
|
|
1
|
-
import { AgentAvailabilityTimer, AgentStatusState, AnsweringMachineDetectionStatus, Channel, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactRecordingType, DataTableAttributeValueType, DataTableLockLevel, DisconnectOnCustomerExitParticipantType, EmailHeaderType, EvaluationFormItemEnablementAction, EvaluationFormItemEnablementOperator, EvaluationFormQuestionType, EvaluationFormVersionStatus, InboundMessageSourceType, InitiateAs, InstanceAttributeType, InstanceStorageResourceType, MeetingFeatureStatus, OverrideType, ParticipantTimerAction, ParticipantTimerType, QueueStatus, RoutingCriteriaStepStatus, RulePublishStatus, SearchableQueueType, TaskTemplateStatus, TimerEligibleParticipantRoles, TrafficType, ViewStatus, ViewType, Visibility } from "./enums";
|
|
2
|
-
import { type AdditionalEmailRecipients, type AgentConfig, type AgentInfo, type AgentStatusSearchFilter, type AllowedCapabilities, type Campaign, type DataTableLockVersion, type Endpoint, type EvaluationFormAutoEvaluationConfiguration, type EvaluationFormLanguageConfiguration, type EvaluationFormQuestionTypeProperties, type EvaluationFormScoringStrategy, type EvaluationFormTargetConfiguration, type GranularAccessControlConfiguration, type InputPredefinedAttributeConfiguration, type InstanceStorageConfig, type OutboundCallerConfig, type OutboundEmailConfig, type OutboundStrategy, type PredefinedAttributeValues, type QuickConnectConfig, type RecurrenceConfig, type StringCondition, type TaskTemplateConstraints, type TaskTemplateDefaults, type UserIdentityInfo, type UserInfo, type UserPhoneConfig, type Validation, type View, type ViewInputContent, type WorkspaceTheme, Application, EvaluationFormItemEnablementExpression, FlowModule, HoursOfOperationConfig, HoursOfOperationOverrideConfig, MediaConcurrency, PrimaryValue, Reference, RoutingProfileQueueConfig, RuleAction, TaskTemplateField, UserProficiency } from "./models_0";
|
|
1
|
+
import { AgentAvailabilityTimer, AgentStatusState, AnsweringMachineDetectionStatus, Channel, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactMediaProcessingFailureMode, ContactRecordingType, DataTableAttributeValueType, DataTableLockLevel, DisconnectOnCustomerExitParticipantType, EmailHeaderType, EvaluationFormItemEnablementAction, EvaluationFormItemEnablementOperator, EvaluationFormQuestionType, EvaluationFormVersionStatus, InboundMessageSourceType, InitiateAs, InstanceAttributeType, InstanceStorageResourceType, IvrRecordingTrack, MeetingFeatureStatus, OverrideType, ParticipantTimerAction, ParticipantTimerType, QueueStatus, RoutingCriteriaStepStatus, RulePublishStatus, SearchableQueueType, TaskTemplateStatus, TimerEligibleParticipantRoles, TrafficType, ViewStatus, ViewType, Visibility, VoiceRecordingTrack } from "./enums";
|
|
2
|
+
import { type AdditionalEmailRecipients, type AgentConfig, type AgentInfo, type AgentStatusSearchFilter, type AllowedCapabilities, type Campaign, type DataTableLockVersion, type Endpoint, type EvaluationFormAutoEvaluationConfiguration, type EvaluationFormLanguageConfiguration, type EvaluationFormQuestionTypeProperties, type EvaluationFormScoringStrategy, type EvaluationFormTargetConfiguration, type EvaluationReviewConfiguration, type GranularAccessControlConfiguration, type InputPredefinedAttributeConfiguration, type InstanceStorageConfig, type OutboundCallerConfig, type OutboundEmailConfig, type OutboundStrategy, type PredefinedAttributeValues, type QuickConnectConfig, type RecurrenceConfig, type StringCondition, type TaskTemplateConstraints, type TaskTemplateDefaults, type UserIdentityInfo, type UserInfo, type UserPhoneConfig, type Validation, type View, type ViewInputContent, type WorkspaceTheme, Application, EvaluationFormItemEnablementExpression, FlowModule, HoursOfOperationConfig, HoursOfOperationOverrideConfig, MediaConcurrency, PrimaryValue, Reference, RoutingProfileQueueConfig, RuleAction, TaskTemplateField, UserProficiency } from "./models_0";
|
|
3
3
|
import { type AttributeCondition, type ChatMetrics, type ContactDetails, type Customer, type CustomerVoiceActivity, type DisconnectDetails, type EndpointInfo, type Evaluation, type EvaluationAnswerData, type Expiry, type GlobalResiliencyMetadata, type QualityMetrics, type QueueInfo, type SignInConfig, type TaskTemplateInfoV2, type TelephonyConfig, type WisdomInfo, ContactEvaluation, EvaluationNote, NextContactEntry, RecordingInfo } from "./models_1";
|
|
4
|
-
import { type BooleanCondition, type ChatMessage, type ChatStreamingConfiguration, type ContactFlowModuleSearchFilter, type ContactFlowSearchFilter, type ContactSearchSummaryAgentInfo, type ContactSearchSummaryQueueInfo, type DataTableSearchFilter, type DateCondition, type DateTimeCondition, type DecimalCondition, type EmailAddressSearchFilter, type EvaluationFormSearchFilter, type EvaluationSearchFilter, type HierarchyGroupCondition, type HoursOfOperationSearchFilter, type ListCondition, type NumberCondition, type OutboundAdditionalRecipients, type OutboundEmailContent, type ParticipantConfiguration, type ParticipantDetails, type PersistentChat, type PromptSearchFilter, type QueueSearchFilter, type QuickConnectSearchFilter, type RoutingProfileSearchFilter, type SecurityProfilesSearchFilter, type TemplatedMessageConfig, type UserHierarchyGroupSearchFilter, type UserSearchFilter, type ViewSearchFilter, type
|
|
4
|
+
import { type AutoEvaluationConfiguration, type BooleanCondition, type ChatMessage, type ChatStreamingConfiguration, type ContactFlowModuleSearchFilter, type ContactFlowSearchFilter, type ContactSearchSummaryAgentInfo, type ContactSearchSummaryQueueInfo, type DataTableSearchFilter, type DateCondition, type DateTimeCondition, type DecimalCondition, type EmailAddressSearchFilter, type EvaluationFormSearchFilter, type EvaluationSearchFilter, type HierarchyGroupCondition, type HoursOfOperationSearchFilter, type ListCondition, type NumberCondition, type OutboundAdditionalRecipients, type OutboundEmailContent, type ParticipantConfiguration, type ParticipantDetails, type PersistentChat, type PromptSearchFilter, type QueueSearchFilter, type QuickConnectSearchFilter, type RoutingProfileSearchFilter, type SecurityProfilesSearchFilter, type TemplatedMessageConfig, type UserHierarchyGroupSearchFilter, type UserSearchFilter, type ViewSearchFilter, type WorkspaceAssociationSearchFilter, type WorkspaceSearchFilter, EmailAddressInfo } from "./models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface StartContactEvaluationRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
InstanceId: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The identifier of the contact in this instance of Amazon Connect. </p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
ContactId: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The unique identifier for the evaluation form.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
EvaluationFormId: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>Whether automated evaluations are enabled.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
AutoEvaluationConfiguration?: AutoEvaluationConfiguration | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
31
|
+
* request. If not provided, the Amazon Web Services
|
|
32
|
+
* SDK populates this field. For more information about idempotency, see
|
|
33
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
ClientToken?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
Tags?: Record<string, string> | undefined;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export interface StartContactEvaluationResponse {
|
|
47
|
+
/**
|
|
48
|
+
* <p>A unique identifier for the contact evaluation.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
EvaluationId: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The Amazon Resource Name (ARN) for the contact evaluation resource.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
EvaluationArn: string | undefined;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export interface StartContactMediaProcessingRequest {
|
|
62
|
+
/**
|
|
63
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
InstanceId?: string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The identifier of the contact.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
ContactId?: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p> The Amazon Resource Name (ARN) of the Lambda processor. You can find the Amazon Resource Name of the lambda in
|
|
74
|
+
* the lambda console. </p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
ProcessorArn?: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p> The desired behavior for failed message processing. </p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
FailureMode?: ContactMediaProcessingFailureMode | undefined;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export interface StartContactMediaProcessingResponse {
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* <p>Contains information about the recording configuration settings.</p>
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export interface VoiceRecordingConfiguration {
|
|
94
|
+
/**
|
|
95
|
+
* <p>Identifies which track is being recorded.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
VoiceRecordingTrack?: VoiceRecordingTrack | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* <p>Identifies which IVR track is being recorded.</p>
|
|
101
|
+
* <p>One and only one of the track configurations should be presented in the request.</p>
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
IvrRecordingTrack?: IvrRecordingTrack | undefined;
|
|
105
|
+
}
|
|
5
106
|
/**
|
|
6
107
|
* @public
|
|
7
108
|
*/
|
|
@@ -5379,6 +5480,11 @@ export interface CreateEvaluationFormRequest {
|
|
|
5379
5480
|
* @public
|
|
5380
5481
|
*/
|
|
5381
5482
|
Tags?: Record<string, string> | undefined;
|
|
5483
|
+
/**
|
|
5484
|
+
* <p>Configuration information about evaluation reviews.</p>
|
|
5485
|
+
* @public
|
|
5486
|
+
*/
|
|
5487
|
+
ReviewConfiguration?: EvaluationReviewConfiguration | undefined;
|
|
5382
5488
|
/**
|
|
5383
5489
|
* <p>Configuration that specifies the target for the evaluation form.</p>
|
|
5384
5490
|
* @public
|
|
@@ -5465,6 +5571,11 @@ export interface EvaluationForm {
|
|
|
5465
5571
|
* @public
|
|
5466
5572
|
*/
|
|
5467
5573
|
AutoEvaluationConfiguration?: EvaluationFormAutoEvaluationConfiguration | undefined;
|
|
5574
|
+
/**
|
|
5575
|
+
* <p>Configuration for evaluation review settings of this evaluation form.</p>
|
|
5576
|
+
* @public
|
|
5577
|
+
*/
|
|
5578
|
+
ReviewConfiguration?: EvaluationReviewConfiguration | undefined;
|
|
5468
5579
|
/**
|
|
5469
5580
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
5470
5581
|
* @public
|
|
@@ -5536,6 +5647,11 @@ export interface EvaluationFormContent {
|
|
|
5536
5647
|
* @public
|
|
5537
5648
|
*/
|
|
5538
5649
|
LanguageConfiguration?: EvaluationFormLanguageConfiguration | undefined;
|
|
5650
|
+
/**
|
|
5651
|
+
* <p>Configuration for evaluation review settings of this evaluation form content.</p>
|
|
5652
|
+
* @public
|
|
5653
|
+
*/
|
|
5654
|
+
ReviewConfiguration?: EvaluationReviewConfiguration | undefined;
|
|
5539
5655
|
}
|
|
5540
5656
|
/**
|
|
5541
5657
|
* @public
|
|
@@ -5620,6 +5736,11 @@ export interface UpdateEvaluationFormRequest {
|
|
|
5620
5736
|
* @public
|
|
5621
5737
|
*/
|
|
5622
5738
|
AutoEvaluationConfiguration?: EvaluationFormAutoEvaluationConfiguration | undefined;
|
|
5739
|
+
/**
|
|
5740
|
+
* <p>Configuration for evaluation review settings of the evaluation form.</p>
|
|
5741
|
+
* @public
|
|
5742
|
+
*/
|
|
5743
|
+
ReviewConfiguration?: EvaluationReviewConfiguration | undefined;
|
|
5623
5744
|
/**
|
|
5624
5745
|
* <p>A boolean flag indicating whether to update evaluation form to draft state.</p>
|
|
5625
5746
|
* @public
|
|
@@ -452,6 +452,11 @@ export declare var EvaluationGenAIAnswerAnalysisDetails$: StaticStructureSchema;
|
|
|
452
452
|
export declare var EvaluationMetadata$: StaticStructureSchema;
|
|
453
453
|
export declare var EvaluationNote$: StaticStructureSchema;
|
|
454
454
|
export declare var EvaluationQuestionInputDetails$: StaticStructureSchema;
|
|
455
|
+
export declare var EvaluationReviewConfiguration$: StaticStructureSchema;
|
|
456
|
+
export declare var EvaluationReviewMetadata$: StaticStructureSchema;
|
|
457
|
+
export declare var EvaluationReviewNotificationRecipient$: StaticStructureSchema;
|
|
458
|
+
export declare var EvaluationReviewNotificationRecipientValue$: StaticStructureSchema;
|
|
459
|
+
export declare var EvaluationReviewRequestComment$: StaticStructureSchema;
|
|
455
460
|
export declare var EvaluationScore$: StaticStructureSchema;
|
|
456
461
|
export declare var EvaluationSearchCriteria$: StaticStructureSchema;
|
|
457
462
|
export declare var EvaluationSearchFilter$: StaticStructureSchema;
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import { DeleteContactEvaluationRequest } from "../models/
|
|
8
|
+
import { DeleteContactEvaluationRequest } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface DeleteContactEvaluationCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListChildHoursOfOperationsRequest,
|
|
10
10
|
ListChildHoursOfOperationsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListChildHoursOfOperationsCommandInput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListContactEvaluationsRequest,
|
|
10
|
+
ListContactEvaluationsResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListContactEvaluationsCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
StartContactMediaProcessingRequest,
|
|
10
10
|
StartContactMediaProcessingResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_3";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface StartContactMediaProcessingCommandInput
|
|
@@ -425,6 +425,11 @@ export declare const EvaluationFormLanguageCode: {
|
|
|
425
425
|
};
|
|
426
426
|
export type EvaluationFormLanguageCode =
|
|
427
427
|
(typeof EvaluationFormLanguageCode)[keyof typeof EvaluationFormLanguageCode];
|
|
428
|
+
export declare const EvaluationReviewNotificationRecipientType: {
|
|
429
|
+
readonly USER_ID: "USER_ID";
|
|
430
|
+
};
|
|
431
|
+
export type EvaluationReviewNotificationRecipientType =
|
|
432
|
+
(typeof EvaluationReviewNotificationRecipientType)[keyof typeof EvaluationReviewNotificationRecipientType];
|
|
428
433
|
export declare const EvaluationFormScoringMode: {
|
|
429
434
|
readonly QUESTION_ONLY: "QUESTION_ONLY";
|
|
430
435
|
readonly SECTION_ONLY: "SECTION_ONLY";
|
|
@@ -784,7 +789,9 @@ export type ContactParticipantRole =
|
|
|
784
789
|
(typeof ContactParticipantRole)[keyof typeof ContactParticipantRole];
|
|
785
790
|
export declare const EvaluationStatus: {
|
|
786
791
|
readonly DRAFT: "DRAFT";
|
|
792
|
+
readonly REVIEW_REQUESTED: "REVIEW_REQUESTED";
|
|
787
793
|
readonly SUBMITTED: "SUBMITTED";
|
|
794
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
788
795
|
};
|
|
789
796
|
export type EvaluationStatus =
|
|
790
797
|
(typeof EvaluationStatus)[keyof typeof EvaluationStatus];
|
|
@@ -33,6 +33,7 @@ import {
|
|
|
33
33
|
EvaluationFormScoringMode,
|
|
34
34
|
EvaluationFormScoringStatus,
|
|
35
35
|
EvaluationFormSingleSelectQuestionDisplayMode,
|
|
36
|
+
EvaluationReviewNotificationRecipientType,
|
|
36
37
|
EventSourceName,
|
|
37
38
|
FailureReasonCode,
|
|
38
39
|
FileStatusType,
|
|
@@ -1093,6 +1094,19 @@ export declare namespace EvaluationFormQuestionTypeProperties {
|
|
|
1093
1094
|
export interface EvaluationFormLanguageConfiguration {
|
|
1094
1095
|
FormLanguage?: EvaluationFormLanguageCode | undefined;
|
|
1095
1096
|
}
|
|
1097
|
+
export interface EvaluationReviewNotificationRecipientValue {
|
|
1098
|
+
UserId?: string | undefined;
|
|
1099
|
+
}
|
|
1100
|
+
export interface EvaluationReviewNotificationRecipient {
|
|
1101
|
+
Type: EvaluationReviewNotificationRecipientType | undefined;
|
|
1102
|
+
Value: EvaluationReviewNotificationRecipientValue | undefined;
|
|
1103
|
+
}
|
|
1104
|
+
export interface EvaluationReviewConfiguration {
|
|
1105
|
+
ReviewNotificationRecipients:
|
|
1106
|
+
| EvaluationReviewNotificationRecipient[]
|
|
1107
|
+
| undefined;
|
|
1108
|
+
EligibilityDays?: number | undefined;
|
|
1109
|
+
}
|
|
1096
1110
|
export interface EvaluationFormScoringStrategy {
|
|
1097
1111
|
Mode: EvaluationFormScoringMode | undefined;
|
|
1098
1112
|
Status: EvaluationFormScoringStatus | undefined;
|
|
@@ -1731,13 +1745,3 @@ export interface DeactivateEvaluationFormResponse {
|
|
|
1731
1745
|
EvaluationFormArn: string | undefined;
|
|
1732
1746
|
EvaluationFormVersion: number | undefined;
|
|
1733
1747
|
}
|
|
1734
|
-
export interface DeleteAttachedFileRequest {
|
|
1735
|
-
InstanceId: string | undefined;
|
|
1736
|
-
FileId: string | undefined;
|
|
1737
|
-
AssociatedResourceArn: string | undefined;
|
|
1738
|
-
}
|
|
1739
|
-
export interface DeleteAttachedFileResponse {}
|
|
1740
|
-
export interface DeleteContactEvaluationRequest {
|
|
1741
|
-
InstanceId: string | undefined;
|
|
1742
|
-
EvaluationId: string | undefined;
|
|
1743
|
-
}
|