@aws-sdk/client-connect 3.701.0 → 3.703.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 +1 -1
- package/dist-cjs/index.js +28 -3
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/models/models_2.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +7 -0
- package/dist-types/Connect.d.ts +1 -1
- package/dist-types/ConnectClient.d.ts +1 -1
- package/dist-types/commands/AssociateFlowCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetFlowAssociationCommand.d.ts +2 -2
- package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DescribePhoneNumberCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateFlowCommand.d.ts +1 -1
- package/dist-types/commands/GetFlowAssociationCommand.d.ts +2 -2
- package/dist-types/commands/ImportPhoneNumberCommand.d.ts +1 -1
- package/dist-types/commands/ListFlowAssociationsCommand.d.ts +2 -2
- package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +2 -2
- package/dist-types/commands/ResumeContactRecordingCommand.d.ts +1 -0
- package/dist-types/commands/SendChatIntegrationEventCommand.d.ts +1 -1
- package/dist-types/commands/StartContactRecordingCommand.d.ts +1 -0
- package/dist-types/commands/StartOutboundChatContactCommand.d.ts +2 -2
- package/dist-types/commands/StopContactRecordingCommand.d.ts +1 -0
- package/dist-types/commands/SuspendContactRecordingCommand.d.ts +1 -0
- package/dist-types/commands/UpdateContactCommand.d.ts +21 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +27 -1
- package/dist-types/models/models_1.d.ts +121 -18
- package/dist-types/models/models_2.d.ts +60 -143
- package/dist-types/models/models_3.d.ts +175 -3
- package/dist-types/ts3.4/models/models_0.d.ts +6 -0
- package/dist-types/ts3.4/models/models_2.d.ts +19 -31
- package/dist-types/ts3.4/models/models_3.d.ts +37 -3
- package/package.json +1 -1
|
@@ -1,6 +1,144 @@
|
|
|
1
|
-
import { AdditionalEmailRecipients, AgentInfo, AgentStatusSearchFilter, Campaign, Channel, ContactInitiationMethod, Endpoint, EvaluationFormScoringStrategy, Reference, StringCondition } from "./models_0";
|
|
2
|
-
import { AnsweringMachineDetectionStatus, AttributeCondition, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, Expiry, QualityMetrics, QueueInfo, RoutingCriteriaStepStatus, WisdomInfo } from "./models_1";
|
|
3
|
-
import { AgentStatusSearchCriteria, ChatMessage, ContactFlowModuleSearchCriteria, ContactFlowModuleSearchFilter, ContactFlowSearchCriteria, ContactFlowSearchFilter, EmailAddressInfo,
|
|
1
|
+
import { AdditionalEmailRecipients, AgentInfo, AgentStatusSearchFilter, Campaign, Channel, ContactInitiationMethod, Endpoint, EvaluationFormScoringStrategy, Reference, StringCondition, UserInfo } from "./models_0";
|
|
2
|
+
import { AnsweringMachineDetectionStatus, AttributeCondition, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, EvaluationFormVersionStatus, Expiry, QualityMetrics, QueueInfo, RoutingCriteriaStepStatus, WisdomInfo } from "./models_1";
|
|
3
|
+
import { AgentStatusSearchCriteria, ChatMessage, ContactFlowModuleSearchCriteria, ContactFlowModuleSearchFilter, ContactFlowSearchCriteria, ContactFlowSearchFilter, EmailAddressInfo, EmailAddressSearchFilter, EmailAttachment, EvaluationFormItem, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, SegmentAttributeValue, UserHierarchyGroupSearchFilter, UserSearchFilter } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* <p>The search criteria to be used to return email addresses.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface EmailAddressSearchCriteria {
|
|
9
|
+
/**
|
|
10
|
+
* <p>A list of conditions which would be applied together with an OR condition.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
OrConditions?: EmailAddressSearchCriteria[] | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>A list of conditions which would be applied together with an AND condition.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
AndConditions?: EmailAddressSearchCriteria[] | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
StringCondition?: StringCondition | undefined;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* <p>Information about the evaluation form.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export interface EvaluationForm {
|
|
30
|
+
/**
|
|
31
|
+
* <p>The unique identifier for the evaluation form.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
EvaluationFormId: string | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* <p>A version of the evaluation form.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
EvaluationFormVersion: number | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* <p>The flag indicating whether the evaluation form is locked for changes.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
Locked: boolean | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>The Amazon Resource Name (ARN) for the evaluation form resource.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
EvaluationFormArn: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* <p>A title of the evaluation form.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
Title: string | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* <p>The description of the evaluation form.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
Description?: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* <p>The status of the evaluation form.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
Status: EvaluationFormVersionStatus | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
Items: EvaluationFormItem[] | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* <p>A scoring strategy of the evaluation form.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* <p>The timestamp for when the evaluation form was created.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
CreatedTime: Date | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <p>The Amazon Resource Name (ARN) of the user who created the evaluation form.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
CreatedBy: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The timestamp for when the evaluation form was last updated.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
LastModifiedTime: Date | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The Amazon Resource Name (ARN) of the user who last updated the evaluation form.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
LastModifiedBy: string | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
Tags?: Record<string, string> | undefined;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* <p>Information about an evaluation form used in a contact evaluation.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export interface EvaluationFormContent {
|
|
106
|
+
/**
|
|
107
|
+
* <p>A version of the evaluation form.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
EvaluationFormVersion: number | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The unique identifier for the evaluation form.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
EvaluationFormId: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* <p>The Amazon Resource Name (ARN) for the evaluation form resource.</p>
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
EvaluationFormArn: string | undefined;
|
|
121
|
+
/**
|
|
122
|
+
* <p>A title of the evaluation form.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
Title: string | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* <p>The description of the evaluation form.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
Description?: string | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
Items: EvaluationFormItem[] | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* <p>A scoring strategy of the evaluation form.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
|
|
141
|
+
}
|
|
4
142
|
/**
|
|
5
143
|
* <p>A tagged union to specify expression for a routing step.</p>
|
|
6
144
|
* @public
|
|
@@ -707,6 +845,40 @@ export interface UpdateContactRequest {
|
|
|
707
845
|
* @public
|
|
708
846
|
*/
|
|
709
847
|
SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
|
|
848
|
+
/**
|
|
849
|
+
* <p> Information about the queue associated with a contact. This parameter can only be updated
|
|
850
|
+
* for external audio contacts. It is used when you integrate third-party systems with Contact Lens for
|
|
851
|
+
* analytics. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html">Amazon Connect Contact Lens integration</a> in
|
|
852
|
+
* the <i>
|
|
853
|
+
* Amazon Connect Administrator Guide</i>.</p>
|
|
854
|
+
* @public
|
|
855
|
+
*/
|
|
856
|
+
QueueInfo?: QueueInfoInput | undefined;
|
|
857
|
+
/**
|
|
858
|
+
* <p>Information about the agent associated with a contact. This parameter can only be updated
|
|
859
|
+
* for external audio contacts. It is used when you integrate third-party systems with Contact Lens for
|
|
860
|
+
* analytics. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html">Amazon Connect Contact Lens integration</a> in
|
|
861
|
+
* the <i>
|
|
862
|
+
* Amazon Connect Administrator Guide</i>.</p>
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
865
|
+
UserInfo?: UserInfo | undefined;
|
|
866
|
+
/**
|
|
867
|
+
* <p>The endpoint of the customer for which the contact was initiated. For external audio
|
|
868
|
+
* contacts, this is usually the end customer's phone number. This value can only be updated for
|
|
869
|
+
* external audio contacts. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html">Amazon Connect
|
|
870
|
+
* Contact Lens integration</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
871
|
+
* @public
|
|
872
|
+
*/
|
|
873
|
+
CustomerEndpoint?: Endpoint | undefined;
|
|
874
|
+
/**
|
|
875
|
+
* <p>External system endpoint for the contact was initiated. For external audio contacts, this is
|
|
876
|
+
* the phone number of the external system such as the contact center. This value can only be
|
|
877
|
+
* updated for external audio contacts. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html">Amazon Connect
|
|
878
|
+
* Contact Lens integration</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
879
|
+
* @public
|
|
880
|
+
*/
|
|
881
|
+
SystemEndpoint?: Endpoint | undefined;
|
|
710
882
|
}
|
|
711
883
|
/**
|
|
712
884
|
* @public
|
|
@@ -426,9 +426,11 @@ export interface AssociateDefaultVocabularyRequest {
|
|
|
426
426
|
}
|
|
427
427
|
export interface AssociateDefaultVocabularyResponse {}
|
|
428
428
|
export declare const FlowAssociationResourceType: {
|
|
429
|
+
readonly ANALYTICS_CONNECTOR: "ANALYTICS_CONNECTOR";
|
|
429
430
|
readonly INBOUND_EMAIL: "INBOUND_EMAIL";
|
|
430
431
|
readonly OUTBOUND_EMAIL: "OUTBOUND_EMAIL";
|
|
431
432
|
readonly SMS_PHONE_NUMBER: "SMS_PHONE_NUMBER";
|
|
433
|
+
readonly WHATSAPP_MESSAGING_PHONE_NUMBER: "WHATSAPP_MESSAGING_PHONE_NUMBER";
|
|
432
434
|
};
|
|
433
435
|
export type FlowAssociationResourceType =
|
|
434
436
|
(typeof FlowAssociationResourceType)[keyof typeof FlowAssociationResourceType];
|
|
@@ -655,9 +657,11 @@ export interface BatchGetAttachedFileMetadataResponse {
|
|
|
655
657
|
Errors?: AttachedFileError[] | undefined;
|
|
656
658
|
}
|
|
657
659
|
export declare const ListFlowAssociationResourceType: {
|
|
660
|
+
readonly ANALYTICS_CONNECTOR: "ANALYTICS_CONNECTOR";
|
|
658
661
|
readonly INBOUND_EMAIL: "INBOUND_EMAIL";
|
|
659
662
|
readonly OUTBOUND_EMAIL: "OUTBOUND_EMAIL";
|
|
660
663
|
readonly VOICE_PHONE_NUMBER: "VOICE_PHONE_NUMBER";
|
|
664
|
+
readonly WHATSAPP_MESSAGING_PHONE_NUMBER: "WHATSAPP_MESSAGING_PHONE_NUMBER";
|
|
661
665
|
};
|
|
662
666
|
export type ListFlowAssociationResourceType =
|
|
663
667
|
(typeof ListFlowAssociationResourceType)[keyof typeof ListFlowAssociationResourceType];
|
|
@@ -1130,7 +1134,9 @@ export interface CreateInstanceResponse {
|
|
|
1130
1134
|
Arn?: string | undefined;
|
|
1131
1135
|
}
|
|
1132
1136
|
export declare const IntegrationType: {
|
|
1137
|
+
readonly ANALYTICS_CONNECTOR: "ANALYTICS_CONNECTOR";
|
|
1133
1138
|
readonly APPLICATION: "APPLICATION";
|
|
1139
|
+
readonly CALL_TRANSFER_CONNECTOR: "CALL_TRANSFER_CONNECTOR";
|
|
1134
1140
|
readonly CASES_DOMAIN: "CASES_DOMAIN";
|
|
1135
1141
|
readonly EVENT: "EVENT";
|
|
1136
1142
|
readonly FILE_SCANNER: "FILE_SCANNER";
|
|
@@ -61,7 +61,6 @@ import {
|
|
|
61
61
|
ContactFlowModuleState,
|
|
62
62
|
ContactFlowState,
|
|
63
63
|
EvaluationAnswerData,
|
|
64
|
-
EvaluationFormVersionStatus,
|
|
65
64
|
EvaluationNote,
|
|
66
65
|
HierarchyGroup,
|
|
67
66
|
HierarchyGroupSummary,
|
|
@@ -500,10 +499,18 @@ export interface ResumeContactRequest {
|
|
|
500
499
|
ContactFlowId?: string | undefined;
|
|
501
500
|
}
|
|
502
501
|
export interface ResumeContactResponse {}
|
|
502
|
+
export declare const ContactRecordingType: {
|
|
503
|
+
readonly AGENT: "AGENT";
|
|
504
|
+
readonly IVR: "IVR";
|
|
505
|
+
readonly SCREEN: "SCREEN";
|
|
506
|
+
};
|
|
507
|
+
export type ContactRecordingType =
|
|
508
|
+
(typeof ContactRecordingType)[keyof typeof ContactRecordingType];
|
|
503
509
|
export interface ResumeContactRecordingRequest {
|
|
504
510
|
InstanceId: string | undefined;
|
|
505
511
|
ContactId: string | undefined;
|
|
506
512
|
InitialContactId: string | undefined;
|
|
513
|
+
ContactRecordingType?: ContactRecordingType | undefined;
|
|
507
514
|
}
|
|
508
515
|
export interface ResumeContactRecordingResponse {}
|
|
509
516
|
export interface SearchAgentStatusesResponse {
|
|
@@ -1012,6 +1019,11 @@ export interface StartContactEvaluationResponse {
|
|
|
1012
1019
|
EvaluationId: string | undefined;
|
|
1013
1020
|
EvaluationArn: string | undefined;
|
|
1014
1021
|
}
|
|
1022
|
+
export declare const IvrRecordingTrack: {
|
|
1023
|
+
readonly ALL: "ALL";
|
|
1024
|
+
};
|
|
1025
|
+
export type IvrRecordingTrack =
|
|
1026
|
+
(typeof IvrRecordingTrack)[keyof typeof IvrRecordingTrack];
|
|
1015
1027
|
export declare const VoiceRecordingTrack: {
|
|
1016
1028
|
readonly ALL: "ALL";
|
|
1017
1029
|
readonly FROM_AGENT: "FROM_AGENT";
|
|
@@ -1021,6 +1033,7 @@ export type VoiceRecordingTrack =
|
|
|
1021
1033
|
(typeof VoiceRecordingTrack)[keyof typeof VoiceRecordingTrack];
|
|
1022
1034
|
export interface VoiceRecordingConfiguration {
|
|
1023
1035
|
VoiceRecordingTrack?: VoiceRecordingTrack | undefined;
|
|
1036
|
+
IvrRecordingTrack?: IvrRecordingTrack | undefined;
|
|
1024
1037
|
}
|
|
1025
1038
|
export interface StartContactRecordingRequest {
|
|
1026
1039
|
InstanceId: string | undefined;
|
|
@@ -1210,6 +1223,7 @@ export interface StopContactRecordingRequest {
|
|
|
1210
1223
|
InstanceId: string | undefined;
|
|
1211
1224
|
ContactId: string | undefined;
|
|
1212
1225
|
InitialContactId: string | undefined;
|
|
1226
|
+
ContactRecordingType?: ContactRecordingType | undefined;
|
|
1213
1227
|
}
|
|
1214
1228
|
export interface StopContactRecordingResponse {}
|
|
1215
1229
|
export interface StopContactStreamingRequest {
|
|
@@ -1235,6 +1249,7 @@ export interface SuspendContactRecordingRequest {
|
|
|
1235
1249
|
InstanceId: string | undefined;
|
|
1236
1250
|
ContactId: string | undefined;
|
|
1237
1251
|
InitialContactId: string | undefined;
|
|
1252
|
+
ContactRecordingType?: ContactRecordingType | undefined;
|
|
1238
1253
|
}
|
|
1239
1254
|
export interface SuspendContactRecordingResponse {}
|
|
1240
1255
|
export interface TagContactRequest {
|
|
@@ -1287,6 +1302,9 @@ export interface UpdateAuthenticationProfileRequest {
|
|
|
1287
1302
|
BlockedIps?: string[] | undefined;
|
|
1288
1303
|
PeriodicSessionDuration?: number | undefined;
|
|
1289
1304
|
}
|
|
1305
|
+
export interface QueueInfoInput {
|
|
1306
|
+
Id?: string | undefined;
|
|
1307
|
+
}
|
|
1290
1308
|
export interface UpdateContactResponse {}
|
|
1291
1309
|
export interface UpdateContactAttributesRequest {
|
|
1292
1310
|
InitialContactId: string | undefined;
|
|
@@ -1771,36 +1789,6 @@ export interface CreateEvaluationFormRequest {
|
|
|
1771
1789
|
ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
|
|
1772
1790
|
ClientToken?: string | undefined;
|
|
1773
1791
|
}
|
|
1774
|
-
export interface EmailAddressSearchCriteria {
|
|
1775
|
-
OrConditions?: EmailAddressSearchCriteria[] | undefined;
|
|
1776
|
-
AndConditions?: EmailAddressSearchCriteria[] | undefined;
|
|
1777
|
-
StringCondition?: StringCondition | undefined;
|
|
1778
|
-
}
|
|
1779
|
-
export interface EvaluationForm {
|
|
1780
|
-
EvaluationFormId: string | undefined;
|
|
1781
|
-
EvaluationFormVersion: number | undefined;
|
|
1782
|
-
Locked: boolean | undefined;
|
|
1783
|
-
EvaluationFormArn: string | undefined;
|
|
1784
|
-
Title: string | undefined;
|
|
1785
|
-
Description?: string | undefined;
|
|
1786
|
-
Status: EvaluationFormVersionStatus | undefined;
|
|
1787
|
-
Items: EvaluationFormItem[] | undefined;
|
|
1788
|
-
ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
|
|
1789
|
-
CreatedTime: Date | undefined;
|
|
1790
|
-
CreatedBy: string | undefined;
|
|
1791
|
-
LastModifiedTime: Date | undefined;
|
|
1792
|
-
LastModifiedBy: string | undefined;
|
|
1793
|
-
Tags?: Record<string, string> | undefined;
|
|
1794
|
-
}
|
|
1795
|
-
export interface EvaluationFormContent {
|
|
1796
|
-
EvaluationFormVersion: number | undefined;
|
|
1797
|
-
EvaluationFormId: string | undefined;
|
|
1798
|
-
EvaluationFormArn: string | undefined;
|
|
1799
|
-
Title: string | undefined;
|
|
1800
|
-
Description?: string | undefined;
|
|
1801
|
-
Items: EvaluationFormItem[] | undefined;
|
|
1802
|
-
ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
|
|
1803
|
-
}
|
|
1804
1792
|
export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
|
|
1805
1793
|
export declare const ListViewsResponseFilterSensitiveLog: (
|
|
1806
1794
|
obj: ListViewsResponse
|
|
@@ -9,6 +9,7 @@ import {
|
|
|
9
9
|
EvaluationFormScoringStrategy,
|
|
10
10
|
Reference,
|
|
11
11
|
StringCondition,
|
|
12
|
+
UserInfo,
|
|
12
13
|
} from "./models_0";
|
|
13
14
|
import {
|
|
14
15
|
AnsweringMachineDetectionStatus,
|
|
@@ -18,6 +19,7 @@ import {
|
|
|
18
19
|
DisconnectDetails,
|
|
19
20
|
EndpointInfo,
|
|
20
21
|
Evaluation,
|
|
22
|
+
EvaluationFormVersionStatus,
|
|
21
23
|
Expiry,
|
|
22
24
|
QualityMetrics,
|
|
23
25
|
QueueInfo,
|
|
@@ -32,11 +34,8 @@ import {
|
|
|
32
34
|
ContactFlowSearchCriteria,
|
|
33
35
|
ContactFlowSearchFilter,
|
|
34
36
|
EmailAddressInfo,
|
|
35
|
-
EmailAddressSearchCriteria,
|
|
36
37
|
EmailAddressSearchFilter,
|
|
37
38
|
EmailAttachment,
|
|
38
|
-
EvaluationForm,
|
|
39
|
-
EvaluationFormContent,
|
|
40
39
|
EvaluationFormItem,
|
|
41
40
|
HierarchyGroupCondition,
|
|
42
41
|
HoursOfOperationSearchFilter,
|
|
@@ -46,6 +45,7 @@ import {
|
|
|
46
45
|
ParticipantDetails,
|
|
47
46
|
PersistentChat,
|
|
48
47
|
PromptSearchFilter,
|
|
48
|
+
QueueInfoInput,
|
|
49
49
|
QueueSearchFilter,
|
|
50
50
|
QuickConnectSearchFilter,
|
|
51
51
|
RoutingCriteriaInputStepExpiry,
|
|
@@ -56,6 +56,36 @@ import {
|
|
|
56
56
|
UserHierarchyGroupSearchFilter,
|
|
57
57
|
UserSearchFilter,
|
|
58
58
|
} from "./models_2";
|
|
59
|
+
export interface EmailAddressSearchCriteria {
|
|
60
|
+
OrConditions?: EmailAddressSearchCriteria[] | undefined;
|
|
61
|
+
AndConditions?: EmailAddressSearchCriteria[] | undefined;
|
|
62
|
+
StringCondition?: StringCondition | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface EvaluationForm {
|
|
65
|
+
EvaluationFormId: string | undefined;
|
|
66
|
+
EvaluationFormVersion: number | undefined;
|
|
67
|
+
Locked: boolean | undefined;
|
|
68
|
+
EvaluationFormArn: string | undefined;
|
|
69
|
+
Title: string | undefined;
|
|
70
|
+
Description?: string | undefined;
|
|
71
|
+
Status: EvaluationFormVersionStatus | undefined;
|
|
72
|
+
Items: EvaluationFormItem[] | undefined;
|
|
73
|
+
ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
|
|
74
|
+
CreatedTime: Date | undefined;
|
|
75
|
+
CreatedBy: string | undefined;
|
|
76
|
+
LastModifiedTime: Date | undefined;
|
|
77
|
+
LastModifiedBy: string | undefined;
|
|
78
|
+
Tags?: Record<string, string> | undefined;
|
|
79
|
+
}
|
|
80
|
+
export interface EvaluationFormContent {
|
|
81
|
+
EvaluationFormVersion: number | undefined;
|
|
82
|
+
EvaluationFormId: string | undefined;
|
|
83
|
+
EvaluationFormArn: string | undefined;
|
|
84
|
+
Title: string | undefined;
|
|
85
|
+
Description?: string | undefined;
|
|
86
|
+
Items: EvaluationFormItem[] | undefined;
|
|
87
|
+
ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
|
|
88
|
+
}
|
|
59
89
|
export interface Expression {
|
|
60
90
|
AttributeCondition?: AttributeCondition | undefined;
|
|
61
91
|
AndExpression?: Expression[] | undefined;
|
|
@@ -162,6 +192,10 @@ export interface UpdateContactRequest {
|
|
|
162
192
|
Description?: string | undefined;
|
|
163
193
|
References?: Record<string, Reference> | undefined;
|
|
164
194
|
SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
|
|
195
|
+
QueueInfo?: QueueInfoInput | undefined;
|
|
196
|
+
UserInfo?: UserInfo | undefined;
|
|
197
|
+
CustomerEndpoint?: Endpoint | undefined;
|
|
198
|
+
SystemEndpoint?: Endpoint | undefined;
|
|
165
199
|
}
|
|
166
200
|
export interface UpdateEvaluationFormRequest {
|
|
167
201
|
InstanceId: string | undefined;
|
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.703.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connect",
|