@aws-sdk/client-connect 3.481.0 → 3.485.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.
|
@@ -309,7 +309,9 @@ export interface AgentContactReference {
|
|
|
309
309
|
}
|
|
310
310
|
/**
|
|
311
311
|
* @public
|
|
312
|
-
* <p>A structure that defines
|
|
312
|
+
* <p>A structure that defines search criteria for contacts using agent hierarchy group levels.
|
|
313
|
+
* For more information about agent hierarchies, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/agent-hierarchy.html">Set Up Agent Hierarchies</a> in the
|
|
314
|
+
* <i>Amazon Connect Administrator Guide</i>.</p>
|
|
313
315
|
*/
|
|
314
316
|
export interface AgentHierarchyGroups {
|
|
315
317
|
/**
|
|
@@ -7827,7 +7827,8 @@ export declare const SearchContactsMatchType: {
|
|
|
7827
7827
|
export type SearchContactsMatchType = (typeof SearchContactsMatchType)[keyof typeof SearchContactsMatchType];
|
|
7828
7828
|
/**
|
|
7829
7829
|
* @public
|
|
7830
|
-
* <p>
|
|
7830
|
+
* <p>A structure that defines search criteria base on words or phrases, participants in the
|
|
7831
|
+
* Contact Lens conversational analytics transcript.</p>
|
|
7831
7832
|
*/
|
|
7832
7833
|
export interface TranscriptCriteria {
|
|
7833
7834
|
/**
|
|
@@ -7842,107 +7843,122 @@ export interface TranscriptCriteria {
|
|
|
7842
7843
|
SearchText: string[] | undefined;
|
|
7843
7844
|
/**
|
|
7844
7845
|
* @public
|
|
7845
|
-
* <p>The match type
|
|
7846
|
+
* <p>The match type combining search criteria using multiple search texts in a transcript
|
|
7847
|
+
* criteria.</p>
|
|
7846
7848
|
*/
|
|
7847
7849
|
MatchType: SearchContactsMatchType | undefined;
|
|
7848
7850
|
}
|
|
7849
7851
|
/**
|
|
7850
7852
|
* @public
|
|
7851
|
-
* <p>
|
|
7853
|
+
* <p>A structure that defines search criteria and matching logic to search for contacts by
|
|
7854
|
+
* matching text with transcripts analyzed by Amazon Connect Contact Lens.</p>
|
|
7852
7855
|
*/
|
|
7853
7856
|
export interface Transcript {
|
|
7854
7857
|
/**
|
|
7855
7858
|
* @public
|
|
7856
|
-
* <p>The
|
|
7859
|
+
* <p>The list of search criteria based on Contact Lens conversational analytics
|
|
7860
|
+
* transcript.</p>
|
|
7857
7861
|
*/
|
|
7858
7862
|
Criteria: TranscriptCriteria[] | undefined;
|
|
7859
7863
|
/**
|
|
7860
7864
|
* @public
|
|
7861
|
-
* <p>The match type
|
|
7865
|
+
* <p>The match type combining search criteria using multiple transcript criteria.</p>
|
|
7862
7866
|
*/
|
|
7863
7867
|
MatchType?: SearchContactsMatchType;
|
|
7864
7868
|
}
|
|
7865
7869
|
/**
|
|
7866
7870
|
* @public
|
|
7867
|
-
* <p>A structure that defines
|
|
7871
|
+
* <p>A structure that defines search criteria for contacts using analysis outputs from Amazon
|
|
7872
|
+
* Connect Contact Lens.</p>
|
|
7868
7873
|
*/
|
|
7869
7874
|
export interface ContactAnalysis {
|
|
7870
7875
|
/**
|
|
7871
7876
|
* @public
|
|
7872
|
-
* <p>
|
|
7877
|
+
* <p>Search criteria based on transcript analyzed by Amazon Connect Contact Lens.</p>
|
|
7873
7878
|
*/
|
|
7874
7879
|
Transcript?: Transcript;
|
|
7875
7880
|
}
|
|
7876
7881
|
/**
|
|
7877
7882
|
* @public
|
|
7878
|
-
* <p>The criteria
|
|
7883
|
+
* <p>The search criteria based on user-defned contact attribute key and values to search
|
|
7884
|
+
* on.</p>
|
|
7879
7885
|
*/
|
|
7880
7886
|
export interface SearchableContactAttributesCriteria {
|
|
7881
7887
|
/**
|
|
7882
7888
|
* @public
|
|
7883
|
-
* <p>The searchable contact attribute
|
|
7889
|
+
* <p>The key containing a searchable user-defined contact attribute.</p>
|
|
7884
7890
|
*/
|
|
7885
7891
|
Key: string | undefined;
|
|
7886
7892
|
/**
|
|
7887
7893
|
* @public
|
|
7888
|
-
* <p>The
|
|
7894
|
+
* <p>The list of values to search for within a user-defined contact attribute.</p>
|
|
7889
7895
|
*/
|
|
7890
7896
|
Values: string[] | undefined;
|
|
7891
7897
|
}
|
|
7892
7898
|
/**
|
|
7893
7899
|
* @public
|
|
7894
|
-
* <p>A structure that defines
|
|
7900
|
+
* <p>A structure that defines search criteria based on user-defined contact attributes that are
|
|
7901
|
+
* configured for contact search.</p>
|
|
7895
7902
|
*/
|
|
7896
7903
|
export interface SearchableContactAttributes {
|
|
7897
7904
|
/**
|
|
7898
7905
|
* @public
|
|
7899
|
-
* <p>The
|
|
7906
|
+
* <p>The list of criteria based on user-defined contact attributes that are configured for
|
|
7907
|
+
* contact search.</p>
|
|
7900
7908
|
*/
|
|
7901
7909
|
Criteria: SearchableContactAttributesCriteria[] | undefined;
|
|
7902
7910
|
/**
|
|
7903
7911
|
* @public
|
|
7904
|
-
* <p>The match type
|
|
7912
|
+
* <p>The match type combining search criteria using multiple searchable contact
|
|
7913
|
+
* attributes.</p>
|
|
7905
7914
|
*/
|
|
7906
7915
|
MatchType?: SearchContactsMatchType;
|
|
7907
7916
|
}
|
|
7908
7917
|
/**
|
|
7909
7918
|
* @public
|
|
7910
|
-
* <p>A structure of search criteria to be used to return contacts
|
|
7919
|
+
* <p>A structure of search criteria to be used to return contacts.</p>
|
|
7911
7920
|
*/
|
|
7912
7921
|
export interface SearchCriteria {
|
|
7913
7922
|
/**
|
|
7914
7923
|
* @public
|
|
7915
|
-
* <p>The
|
|
7924
|
+
* <p>The identifiers of agents who handled the contacts.</p>
|
|
7916
7925
|
*/
|
|
7917
7926
|
AgentIds?: string[];
|
|
7918
7927
|
/**
|
|
7919
7928
|
* @public
|
|
7920
|
-
* <p>The agent hierarchy groups
|
|
7929
|
+
* <p>The agent hierarchy groups of the agent at the time of handling the contact.</p>
|
|
7921
7930
|
*/
|
|
7922
7931
|
AgentHierarchyGroups?: AgentHierarchyGroups;
|
|
7923
7932
|
/**
|
|
7924
7933
|
* @public
|
|
7925
|
-
* <p>The
|
|
7934
|
+
* <p>The list of channels associated with contacts.</p>
|
|
7926
7935
|
*/
|
|
7927
7936
|
Channels?: Channel[];
|
|
7928
7937
|
/**
|
|
7929
7938
|
* @public
|
|
7930
|
-
* <p>
|
|
7939
|
+
* <p>Search criteria based on analysis outputs from Amazon Connect Contact Lens.</p>
|
|
7931
7940
|
*/
|
|
7932
7941
|
ContactAnalysis?: ContactAnalysis;
|
|
7933
7942
|
/**
|
|
7934
7943
|
* @public
|
|
7935
|
-
* <p>The
|
|
7944
|
+
* <p>The list of initiation methods associated with contacts.</p>
|
|
7936
7945
|
*/
|
|
7937
7946
|
InitiationMethods?: ContactInitiationMethod[];
|
|
7938
7947
|
/**
|
|
7939
7948
|
* @public
|
|
7940
|
-
* <p>The
|
|
7949
|
+
* <p>The list of queue IDs associated with contacts.</p>
|
|
7941
7950
|
*/
|
|
7942
7951
|
QueueIds?: string[];
|
|
7943
7952
|
/**
|
|
7944
7953
|
* @public
|
|
7945
|
-
* <p>The
|
|
7954
|
+
* <p>The search criteria based on user-defined contact attributes that have been configured for
|
|
7955
|
+
* contact search. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/search-custom-attributes.html">Search by customer contact
|
|
7956
|
+
* attributes</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
7957
|
+
* <important>
|
|
7958
|
+
* <p>To use <code>SearchableContactAttributes</code> in a search request, the
|
|
7959
|
+
* <code>GetContactAttributes</code> action is required to perform an API request. For more
|
|
7960
|
+
* information, see <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnect.html#amazonconnect-actions-as-permissions">https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnect.html#amazonconnect-actions-as-permissions</a>Actions defined by Amazon Connect.</p>
|
|
7961
|
+
* </important>
|
|
7946
7962
|
*/
|
|
7947
7963
|
SearchableContactAttributes?: SearchableContactAttributes;
|
|
7948
7964
|
}
|
|
@@ -7964,7 +7980,7 @@ export declare const SortableFieldName: {
|
|
|
7964
7980
|
export type SortableFieldName = (typeof SortableFieldName)[keyof typeof SortableFieldName];
|
|
7965
7981
|
/**
|
|
7966
7982
|
* @public
|
|
7967
|
-
* <p>A structure that
|
|
7983
|
+
* <p>A structure that defineds the field name to sort by and a sort order.</p>
|
|
7968
7984
|
*/
|
|
7969
7985
|
export interface Sort {
|
|
7970
7986
|
/**
|
|
@@ -18,12 +18,12 @@ export declare const SearchContactsTimeRangeType: {
|
|
|
18
18
|
export type SearchContactsTimeRangeType = (typeof SearchContactsTimeRangeType)[keyof typeof SearchContactsTimeRangeType];
|
|
19
19
|
/**
|
|
20
20
|
* @public
|
|
21
|
-
* <p>A structure of time range that you want to search results
|
|
21
|
+
* <p>A structure of time range that you want to search results.</p>
|
|
22
22
|
*/
|
|
23
23
|
export interface SearchContactsTimeRange {
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>The type of timestamp to search
|
|
26
|
+
* <p>The type of timestamp to search.</p>
|
|
27
27
|
*/
|
|
28
28
|
Type: SearchContactsTimeRangeType | undefined;
|
|
29
29
|
/**
|
|
@@ -43,12 +43,13 @@ export interface SearchContactsTimeRange {
|
|
|
43
43
|
export interface SearchContactsRequest {
|
|
44
44
|
/**
|
|
45
45
|
* @public
|
|
46
|
-
* <p>The identifier of Amazon Connect instance. You can find the instance ID in the Amazon
|
|
46
|
+
* <p>The identifier of Amazon Connect instance. You can find the instance ID in the Amazon
|
|
47
|
+
* Resource Name (ARN) of the instance.</p>
|
|
47
48
|
*/
|
|
48
49
|
InstanceId: string | undefined;
|
|
49
50
|
/**
|
|
50
51
|
* @public
|
|
51
|
-
* <p>Time range that you want to search results
|
|
52
|
+
* <p>Time range that you want to search results.</p>
|
|
52
53
|
*/
|
|
53
54
|
TimeRange: SearchContactsTimeRange | undefined;
|
|
54
55
|
/**
|
|
@@ -63,12 +64,13 @@ export interface SearchContactsRequest {
|
|
|
63
64
|
MaxResults?: number;
|
|
64
65
|
/**
|
|
65
66
|
* @public
|
|
66
|
-
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
67
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
68
|
+
* the next request to retrieve the next set of results.</p>
|
|
67
69
|
*/
|
|
68
70
|
NextToken?: string;
|
|
69
71
|
/**
|
|
70
72
|
* @public
|
|
71
|
-
* <p>Specifies a field to sort by and a sort order
|
|
73
|
+
* <p>Specifies a field to sort by and a sort order.</p>
|
|
72
74
|
*/
|
|
73
75
|
Sort?: Sort;
|
|
74
76
|
}
|
|
@@ -111,7 +113,7 @@ export interface ContactSearchSummaryQueueInfo {
|
|
|
111
113
|
export interface ContactSearchSummary {
|
|
112
114
|
/**
|
|
113
115
|
* @public
|
|
114
|
-
* <p>The Amazon Resource Name (ARN) of the contact
|
|
116
|
+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
|
|
115
117
|
*/
|
|
116
118
|
Arn?: string;
|
|
117
119
|
/**
|
|
@@ -151,7 +153,13 @@ export interface ContactSearchSummary {
|
|
|
151
153
|
AgentInfo?: ContactSearchSummaryAgentInfo;
|
|
152
154
|
/**
|
|
153
155
|
* @public
|
|
154
|
-
* <p>The date and time this contact was initiated, in UTC time. For INBOUND
|
|
156
|
+
* <p>The date and time this contact was initiated, in UTC time. For <code>INBOUND</code>, this is
|
|
157
|
+
* when the contact arrived. For <code>OUTBOUND</code>, this is when the agent began dialing. For
|
|
158
|
+
* <code>CALLBACK</code>, this is when the callback contact was created. For <code>TRANSFER</code>
|
|
159
|
+
* and <code>QUEUE_TRANSFER</code>, this is when the transfer was initiated. For API, this is when
|
|
160
|
+
* the request arrived. For <code>EXTERNAL_OUTBOUND</code>, this is when the agent started dialing
|
|
161
|
+
* the external participant. For <code>MONITOR</code>, this is when the supervisor started listening
|
|
162
|
+
* to a contact.</p>
|
|
155
163
|
*/
|
|
156
164
|
InitiationTimestamp?: Date;
|
|
157
165
|
/**
|
|
@@ -4341,10 +4349,10 @@ export interface UserSearchCriteria {
|
|
|
4341
4349
|
/**
|
|
4342
4350
|
* @public
|
|
4343
4351
|
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
4344
|
-
* <
|
|
4345
|
-
*
|
|
4346
|
-
*
|
|
4347
|
-
*
|
|
4352
|
+
* <p>The currently supported values for <code>FieldName</code> are <code>username</code>,
|
|
4353
|
+
* <code>firstname</code>, <code>lastname</code>, <code>resourceId</code>,
|
|
4354
|
+
* <code>routingProfileId</code>, <code>securityProfileId</code>, <code>agentGroupId</code>, and
|
|
4355
|
+
* <code>agentGroupPathIds</code>.</p>
|
|
4348
4356
|
*/
|
|
4349
4357
|
StringCondition?: StringCondition;
|
|
4350
4358
|
/**
|
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.485.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",
|
|
@@ -20,42 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/core": "^1.2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.3.
|
|
39
|
-
"@smithy/hash-node": "^2.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
44
|
-
"@smithy/middleware-serde": "^2.0.
|
|
45
|
-
"@smithy/middleware-stack": "^2.0.
|
|
46
|
-
"@smithy/node-config-provider": "^2.1.
|
|
47
|
-
"@smithy/node-http-handler": "^2.2.
|
|
48
|
-
"@smithy/protocol-http": "^3.0.
|
|
49
|
-
"@smithy/smithy-client": "^2.2.
|
|
50
|
-
"@smithy/types": "^2.
|
|
51
|
-
"@smithy/url-parser": "^2.0.
|
|
23
|
+
"@aws-sdk/client-sts": "3.485.0",
|
|
24
|
+
"@aws-sdk/core": "3.485.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.485.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.485.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.485.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.485.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.485.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.485.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.485.0",
|
|
32
|
+
"@aws-sdk/types": "3.485.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.485.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.485.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.485.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.23",
|
|
37
|
+
"@smithy/core": "^1.2.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.3.2",
|
|
39
|
+
"@smithy/hash-node": "^2.0.18",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.0.16",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.0.18",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.3.0",
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^2.0.16",
|
|
45
|
+
"@smithy/middleware-stack": "^2.0.10",
|
|
46
|
+
"@smithy/node-config-provider": "^2.1.9",
|
|
47
|
+
"@smithy/node-http-handler": "^2.2.2",
|
|
48
|
+
"@smithy/protocol-http": "^3.0.12",
|
|
49
|
+
"@smithy/smithy-client": "^2.2.1",
|
|
50
|
+
"@smithy/types": "^2.8.0",
|
|
51
|
+
"@smithy/url-parser": "^2.0.16",
|
|
52
52
|
"@smithy/util-base64": "^2.0.1",
|
|
53
53
|
"@smithy/util-body-length-browser": "^2.0.1",
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
57
|
-
"@smithy/util-endpoints": "^1.0.
|
|
58
|
-
"@smithy/util-retry": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.24",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.32",
|
|
57
|
+
"@smithy/util-endpoints": "^1.0.8",
|
|
58
|
+
"@smithy/util-retry": "^2.0.9",
|
|
59
59
|
"@smithy/util-utf8": "^2.0.2",
|
|
60
60
|
"tslib": "^2.5.0",
|
|
61
61
|
"uuid": "^8.3.2"
|