@aws-sdk/client-connect 3.359.0 → 3.360.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 +8 -0
- package/dist-cjs/Connect.js +2 -0
- package/dist-cjs/commands/SearchResourceTagsCommand.js +46 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_1.js +15 -1
- package/dist-cjs/pagination/SearchResourceTagsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +94 -6
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/SearchResourceTagsCommand.js +42 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +13 -0
- package/dist-es/pagination/SearchResourceTagsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +87 -1
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/ClaimPhoneNumberCommand.d.ts +13 -0
- package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +1 -1
- package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +13 -0
- package/dist-types/commands/SearchResourceTagsCommand.d.ts +111 -0
- package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +102 -163
- package/dist-types/models/models_2.d.ts +164 -1
- package/dist-types/pagination/SearchResourceTagsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeContactEvaluationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchResourceTagsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateEvaluationFormCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +32 -37
- package/dist-types/ts3.4/models/models_2.d.ts +41 -4
- package/dist-types/ts3.4/pagination/SearchResourceTagsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +7 -7
|
@@ -1,4 +1,167 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Evaluation, EvaluationFormScoringStrategy } from "./models_0";
|
|
2
|
+
import { EvaluationForm, EvaluationFormContent, EvaluationFormItem, HierarchyGroupCondition, HoursOfOperationSearchCriteria, HoursOfOperationSearchFilter, PromptSearchCriteria, PromptSearchFilter, QueueSearchCriteria, QueueSearchFilter, QuickConnectSearchFilter, RoutingProfileSearchFilter, SecurityProfilesSearchFilter, StringCondition, UserSearchFilter } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* <p>The search criteria to be used to return quick connects.</p>
|
|
6
|
+
*/
|
|
7
|
+
export interface QuickConnectSearchCriteria {
|
|
8
|
+
/**
|
|
9
|
+
* <p>A list of conditions which would be applied together with an OR condition.</p>
|
|
10
|
+
*/
|
|
11
|
+
OrConditions?: QuickConnectSearchCriteria[];
|
|
12
|
+
/**
|
|
13
|
+
* <p>A list of conditions which would be applied together with an AND condition.</p>
|
|
14
|
+
*/
|
|
15
|
+
AndConditions?: QuickConnectSearchCriteria[];
|
|
16
|
+
/**
|
|
17
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
18
|
+
* <note>
|
|
19
|
+
* <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
|
|
20
|
+
* <code>description</code>, and <code>resourceID</code>.</p>
|
|
21
|
+
* </note>
|
|
22
|
+
*/
|
|
23
|
+
StringCondition?: StringCondition;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* <p>The search criteria to be used to return routing profiles.</p>
|
|
28
|
+
* <note>
|
|
29
|
+
* <p>The <code>name</code> and <code>description</code> fields support "contains" queries with
|
|
30
|
+
* a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths
|
|
31
|
+
* outside of this range will throw invalid results. </p>
|
|
32
|
+
* </note>
|
|
33
|
+
*/
|
|
34
|
+
export interface RoutingProfileSearchCriteria {
|
|
35
|
+
/**
|
|
36
|
+
* <p>A list of conditions which would be applied together with an OR condition.</p>
|
|
37
|
+
*/
|
|
38
|
+
OrConditions?: RoutingProfileSearchCriteria[];
|
|
39
|
+
/**
|
|
40
|
+
* <p>A list of conditions which would be applied together with an AND condition.</p>
|
|
41
|
+
*/
|
|
42
|
+
AndConditions?: RoutingProfileSearchCriteria[];
|
|
43
|
+
/**
|
|
44
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
45
|
+
* <note>
|
|
46
|
+
* <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
|
|
47
|
+
* <code>description</code>, and <code>resourceID</code>.</p>
|
|
48
|
+
* </note>
|
|
49
|
+
*/
|
|
50
|
+
StringCondition?: StringCondition;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* <p>The search criteria to be used to return security profiles.</p>
|
|
55
|
+
* <note>
|
|
56
|
+
* <p>The <code>name</code> field support "contains" queries with a minimum of 2 characters and
|
|
57
|
+
* maximum of 25 characters. Any queries with character lengths outside of this range will throw
|
|
58
|
+
* invalid results.</p>
|
|
59
|
+
* </note>
|
|
60
|
+
*/
|
|
61
|
+
export interface SecurityProfileSearchCriteria {
|
|
62
|
+
/**
|
|
63
|
+
* <p>A list of conditions which would be applied together with an OR condition.</p>
|
|
64
|
+
*/
|
|
65
|
+
OrConditions?: SecurityProfileSearchCriteria[];
|
|
66
|
+
/**
|
|
67
|
+
* <p>A list of conditions which would be applied together with an AND condition.</p>
|
|
68
|
+
*/
|
|
69
|
+
AndConditions?: SecurityProfileSearchCriteria[];
|
|
70
|
+
/**
|
|
71
|
+
* <p>A leaf node condition which can be used to specify a string condition. </p>
|
|
72
|
+
*/
|
|
73
|
+
StringCondition?: StringCondition;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export interface UpdateEvaluationFormRequest {
|
|
79
|
+
/**
|
|
80
|
+
* <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>
|
|
81
|
+
*/
|
|
82
|
+
InstanceId: string | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* <p>The unique identifier for the evaluation form.</p>
|
|
85
|
+
*/
|
|
86
|
+
EvaluationFormId: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>A version of the evaluation form to update.</p>
|
|
89
|
+
*/
|
|
90
|
+
EvaluationFormVersion: number | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>A flag indicating whether the operation must create a new version.</p>
|
|
93
|
+
*/
|
|
94
|
+
CreateNewVersion?: boolean;
|
|
95
|
+
/**
|
|
96
|
+
* <p>A title of the evaluation form.</p>
|
|
97
|
+
*/
|
|
98
|
+
Title: string | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* <p>The description of the evaluation form.</p>
|
|
101
|
+
*/
|
|
102
|
+
Description?: string;
|
|
103
|
+
/**
|
|
104
|
+
* <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>
|
|
105
|
+
*/
|
|
106
|
+
Items: EvaluationFormItem[] | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>A scoring strategy of the evaluation form.</p>
|
|
109
|
+
*/
|
|
110
|
+
ScoringStrategy?: EvaluationFormScoringStrategy;
|
|
111
|
+
/**
|
|
112
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
113
|
+
* request. If not provided, the Amazon Web Services
|
|
114
|
+
* SDK populates this field. For more information about idempotency, see
|
|
115
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
116
|
+
*/
|
|
117
|
+
ClientToken?: string;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* <p>The search criteria to be used to return users.</p>
|
|
122
|
+
* <note>
|
|
123
|
+
* <p>The <code>name</code> and <code>description</code> fields support "contains" queries with
|
|
124
|
+
* a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths
|
|
125
|
+
* outside of this range will throw invalid results. </p>
|
|
126
|
+
* </note>
|
|
127
|
+
*/
|
|
128
|
+
export interface UserSearchCriteria {
|
|
129
|
+
/**
|
|
130
|
+
* <p>A list of conditions which would be applied together with an <code>OR</code>
|
|
131
|
+
* condition.</p>
|
|
132
|
+
*/
|
|
133
|
+
OrConditions?: UserSearchCriteria[];
|
|
134
|
+
/**
|
|
135
|
+
* <p>A list of conditions which would be applied together with an <code>AND</code> condition.
|
|
136
|
+
* </p>
|
|
137
|
+
*/
|
|
138
|
+
AndConditions?: UserSearchCriteria[];
|
|
139
|
+
/**
|
|
140
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
141
|
+
* <note>
|
|
142
|
+
* <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
|
|
143
|
+
* <code>description</code>, and <code>resourceID</code>.</p>
|
|
144
|
+
* </note>
|
|
145
|
+
*/
|
|
146
|
+
StringCondition?: StringCondition;
|
|
147
|
+
/**
|
|
148
|
+
* <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
|
|
149
|
+
*/
|
|
150
|
+
HierarchyGroupCondition?: HierarchyGroupCondition;
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
export interface DescribeContactEvaluationResponse {
|
|
156
|
+
/**
|
|
157
|
+
* <p>Information about the evaluation form completed for a specific contact.</p>
|
|
158
|
+
*/
|
|
159
|
+
Evaluation: Evaluation | undefined;
|
|
160
|
+
/**
|
|
161
|
+
* <p>Information about the evaluation form.</p>
|
|
162
|
+
*/
|
|
163
|
+
EvaluationForm: EvaluationFormContent | undefined;
|
|
164
|
+
}
|
|
2
165
|
/**
|
|
3
166
|
* @public
|
|
4
167
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { SearchResourceTagsCommandInput, SearchResourceTagsCommandOutput } from "../commands/SearchResourceTagsCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateSearchResourceTags(config: ConnectPaginationConfiguration, input: SearchResourceTagsCommandInput, ...additionalArguments: any): Paginator<SearchResourceTagsCommandOutput>;
|
|
@@ -42,6 +42,7 @@ export * from "./SearchHoursOfOperationsPaginator";
|
|
|
42
42
|
export * from "./SearchPromptsPaginator";
|
|
43
43
|
export * from "./SearchQueuesPaginator";
|
|
44
44
|
export * from "./SearchQuickConnectsPaginator";
|
|
45
|
+
export * from "./SearchResourceTagsPaginator";
|
|
45
46
|
export * from "./SearchRoutingProfilesPaginator";
|
|
46
47
|
export * from "./SearchSecurityProfilesPaginator";
|
|
47
48
|
export * from "./SearchUsersPaginator";
|
|
@@ -136,6 +136,7 @@ import { SearchHoursOfOperationsCommandInput, SearchHoursOfOperationsCommandOutp
|
|
|
136
136
|
import { SearchPromptsCommandInput, SearchPromptsCommandOutput } from "../commands/SearchPromptsCommand";
|
|
137
137
|
import { SearchQueuesCommandInput, SearchQueuesCommandOutput } from "../commands/SearchQueuesCommand";
|
|
138
138
|
import { SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput } from "../commands/SearchQuickConnectsCommand";
|
|
139
|
+
import { SearchResourceTagsCommandInput, SearchResourceTagsCommandOutput } from "../commands/SearchResourceTagsCommand";
|
|
139
140
|
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "../commands/SearchRoutingProfilesCommand";
|
|
140
141
|
import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput } from "../commands/SearchSecurityProfilesCommand";
|
|
141
142
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "../commands/SearchUsersCommand";
|
|
@@ -737,6 +738,10 @@ export declare const se_SearchQueuesCommand: (input: SearchQueuesCommandInput, c
|
|
|
737
738
|
* serializeAws_restJson1SearchQuickConnectsCommand
|
|
738
739
|
*/
|
|
739
740
|
export declare const se_SearchQuickConnectsCommand: (input: SearchQuickConnectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
741
|
+
/**
|
|
742
|
+
* serializeAws_restJson1SearchResourceTagsCommand
|
|
743
|
+
*/
|
|
744
|
+
export declare const se_SearchResourceTagsCommand: (input: SearchResourceTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
740
745
|
/**
|
|
741
746
|
* serializeAws_restJson1SearchRoutingProfilesCommand
|
|
742
747
|
*/
|
|
@@ -1509,6 +1514,10 @@ export declare const de_SearchQueuesCommand: (output: __HttpResponse, context: _
|
|
|
1509
1514
|
* deserializeAws_restJson1SearchQuickConnectsCommand
|
|
1510
1515
|
*/
|
|
1511
1516
|
export declare const de_SearchQuickConnectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchQuickConnectsCommandOutput>;
|
|
1517
|
+
/**
|
|
1518
|
+
* deserializeAws_restJson1SearchResourceTagsCommand
|
|
1519
|
+
*/
|
|
1520
|
+
export declare const de_SearchResourceTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchResourceTagsCommandOutput>;
|
|
1512
1521
|
/**
|
|
1513
1522
|
* deserializeAws_restJson1SearchRoutingProfilesCommand
|
|
1514
1523
|
*/
|
|
@@ -543,6 +543,10 @@ import {
|
|
|
543
543
|
SearchQuickConnectsCommandInput,
|
|
544
544
|
SearchQuickConnectsCommandOutput,
|
|
545
545
|
} from "./commands/SearchQuickConnectsCommand";
|
|
546
|
+
import {
|
|
547
|
+
SearchResourceTagsCommandInput,
|
|
548
|
+
SearchResourceTagsCommandOutput,
|
|
549
|
+
} from "./commands/SearchResourceTagsCommand";
|
|
546
550
|
import {
|
|
547
551
|
SearchRoutingProfilesCommandInput,
|
|
548
552
|
SearchRoutingProfilesCommandOutput,
|
|
@@ -2553,6 +2557,19 @@ export interface Connect {
|
|
|
2553
2557
|
options: __HttpHandlerOptions,
|
|
2554
2558
|
cb: (err: any, data?: SearchQuickConnectsCommandOutput) => void
|
|
2555
2559
|
): void;
|
|
2560
|
+
searchResourceTags(
|
|
2561
|
+
args: SearchResourceTagsCommandInput,
|
|
2562
|
+
options?: __HttpHandlerOptions
|
|
2563
|
+
): Promise<SearchResourceTagsCommandOutput>;
|
|
2564
|
+
searchResourceTags(
|
|
2565
|
+
args: SearchResourceTagsCommandInput,
|
|
2566
|
+
cb: (err: any, data?: SearchResourceTagsCommandOutput) => void
|
|
2567
|
+
): void;
|
|
2568
|
+
searchResourceTags(
|
|
2569
|
+
args: SearchResourceTagsCommandInput,
|
|
2570
|
+
options: __HttpHandlerOptions,
|
|
2571
|
+
cb: (err: any, data?: SearchResourceTagsCommandOutput) => void
|
|
2572
|
+
): void;
|
|
2556
2573
|
searchRoutingProfiles(
|
|
2557
2574
|
args: SearchRoutingProfilesCommandInput,
|
|
2558
2575
|
options?: __HttpHandlerOptions
|
|
@@ -590,6 +590,10 @@ import {
|
|
|
590
590
|
SearchQuickConnectsCommandInput,
|
|
591
591
|
SearchQuickConnectsCommandOutput,
|
|
592
592
|
} from "./commands/SearchQuickConnectsCommand";
|
|
593
|
+
import {
|
|
594
|
+
SearchResourceTagsCommandInput,
|
|
595
|
+
SearchResourceTagsCommandOutput,
|
|
596
|
+
} from "./commands/SearchResourceTagsCommand";
|
|
593
597
|
import {
|
|
594
598
|
SearchRoutingProfilesCommandInput,
|
|
595
599
|
SearchRoutingProfilesCommandOutput,
|
|
@@ -961,6 +965,7 @@ export type ServiceInputTypes =
|
|
|
961
965
|
| SearchPromptsCommandInput
|
|
962
966
|
| SearchQueuesCommandInput
|
|
963
967
|
| SearchQuickConnectsCommandInput
|
|
968
|
+
| SearchResourceTagsCommandInput
|
|
964
969
|
| SearchRoutingProfilesCommandInput
|
|
965
970
|
| SearchSecurityProfilesCommandInput
|
|
966
971
|
| SearchUsersCommandInput
|
|
@@ -1155,6 +1160,7 @@ export type ServiceOutputTypes =
|
|
|
1155
1160
|
| SearchPromptsCommandOutput
|
|
1156
1161
|
| SearchQueuesCommandOutput
|
|
1157
1162
|
| SearchQuickConnectsCommandOutput
|
|
1163
|
+
| SearchResourceTagsCommandOutput
|
|
1158
1164
|
| SearchRoutingProfilesCommandOutput
|
|
1159
1165
|
| SearchSecurityProfilesCommandOutput
|
|
1160
1166
|
| SearchUsersCommandOutput
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
14
|
import { DescribeContactEvaluationRequest } from "../models/models_0";
|
|
15
|
-
import { DescribeContactEvaluationResponse } from "../models/
|
|
15
|
+
import { DescribeContactEvaluationResponse } from "../models/models_2";
|
|
16
16
|
export { __MetadataBearer, $Command };
|
|
17
17
|
export interface DescribeContactEvaluationCommandInput
|
|
18
18
|
extends DescribeContactEvaluationRequest {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ConnectClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ConnectClient";
|
|
14
|
+
import {
|
|
15
|
+
SearchResourceTagsRequest,
|
|
16
|
+
SearchResourceTagsResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface SearchResourceTagsCommandInput
|
|
20
|
+
extends SearchResourceTagsRequest {}
|
|
21
|
+
export interface SearchResourceTagsCommandOutput
|
|
22
|
+
extends SearchResourceTagsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class SearchResourceTagsCommand extends $Command<
|
|
25
|
+
SearchResourceTagsCommandInput,
|
|
26
|
+
SearchResourceTagsCommandOutput,
|
|
27
|
+
ConnectClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: SearchResourceTagsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: SearchResourceTagsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ConnectClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<SearchResourceTagsCommandInput, SearchResourceTagsCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
UpdateEvaluationFormResponse,
|
|
17
|
-
} from "../models/models_1";
|
|
14
|
+
import { UpdateEvaluationFormResponse } from "../models/models_1";
|
|
15
|
+
import { UpdateEvaluationFormRequest } from "../models/models_2";
|
|
18
16
|
export { __MetadataBearer, $Command };
|
|
19
17
|
export interface UpdateEvaluationFormCommandInput
|
|
20
18
|
extends UpdateEvaluationFormRequest {}
|
|
@@ -134,6 +134,7 @@ export * from "./SearchHoursOfOperationsCommand";
|
|
|
134
134
|
export * from "./SearchPromptsCommand";
|
|
135
135
|
export * from "./SearchQueuesCommand";
|
|
136
136
|
export * from "./SearchQuickConnectsCommand";
|
|
137
|
+
export * from "./SearchResourceTagsCommand";
|
|
137
138
|
export * from "./SearchRoutingProfilesCommand";
|
|
138
139
|
export * from "./SearchSecurityProfilesCommand";
|
|
139
140
|
export * from "./SearchUsersCommand";
|
|
@@ -15,7 +15,6 @@ import {
|
|
|
15
15
|
ContactState,
|
|
16
16
|
CurrentMetric,
|
|
17
17
|
DirectoryType,
|
|
18
|
-
Evaluation,
|
|
19
18
|
EvaluationAnswerData,
|
|
20
19
|
EvaluationFormQuestion,
|
|
21
20
|
EvaluationFormScoringStrategy,
|
|
@@ -1059,6 +1058,38 @@ export interface SearchQuickConnectsResponse {
|
|
|
1059
1058
|
NextToken?: string;
|
|
1060
1059
|
ApproximateTotalCount?: number;
|
|
1061
1060
|
}
|
|
1061
|
+
export declare class MaximumResultReturnedException extends __BaseException {
|
|
1062
|
+
readonly name: "MaximumResultReturnedException";
|
|
1063
|
+
readonly $fault: "client";
|
|
1064
|
+
Message?: string;
|
|
1065
|
+
constructor(
|
|
1066
|
+
opts: __ExceptionOptionType<MaximumResultReturnedException, __BaseException>
|
|
1067
|
+
);
|
|
1068
|
+
}
|
|
1069
|
+
export interface TagSearchCondition {
|
|
1070
|
+
tagKey?: string;
|
|
1071
|
+
tagValue?: string;
|
|
1072
|
+
tagKeyComparisonType?: StringComparisonType | string;
|
|
1073
|
+
tagValueComparisonType?: StringComparisonType | string;
|
|
1074
|
+
}
|
|
1075
|
+
export interface ResourceTagsSearchCriteria {
|
|
1076
|
+
TagSearchCondition?: TagSearchCondition;
|
|
1077
|
+
}
|
|
1078
|
+
export interface SearchResourceTagsRequest {
|
|
1079
|
+
InstanceId: string | undefined;
|
|
1080
|
+
ResourceTypes?: string[];
|
|
1081
|
+
NextToken?: string;
|
|
1082
|
+
MaxResults?: number;
|
|
1083
|
+
SearchCriteria?: ResourceTagsSearchCriteria;
|
|
1084
|
+
}
|
|
1085
|
+
export interface TagSet {
|
|
1086
|
+
key?: string;
|
|
1087
|
+
value?: string;
|
|
1088
|
+
}
|
|
1089
|
+
export interface SearchResourceTagsResponse {
|
|
1090
|
+
Tags?: TagSet[];
|
|
1091
|
+
NextToken?: string;
|
|
1092
|
+
}
|
|
1062
1093
|
export interface RoutingProfileSearchFilter {
|
|
1063
1094
|
TagFilter?: ControlPlaneTagFilter;
|
|
1064
1095
|
}
|
|
@@ -1764,42 +1795,6 @@ export interface QueueSearchCriteria {
|
|
|
1764
1795
|
StringCondition?: StringCondition;
|
|
1765
1796
|
QueueTypeCondition?: SearchableQueueType | string;
|
|
1766
1797
|
}
|
|
1767
|
-
export interface QuickConnectSearchCriteria {
|
|
1768
|
-
OrConditions?: QuickConnectSearchCriteria[];
|
|
1769
|
-
AndConditions?: QuickConnectSearchCriteria[];
|
|
1770
|
-
StringCondition?: StringCondition;
|
|
1771
|
-
}
|
|
1772
|
-
export interface RoutingProfileSearchCriteria {
|
|
1773
|
-
OrConditions?: RoutingProfileSearchCriteria[];
|
|
1774
|
-
AndConditions?: RoutingProfileSearchCriteria[];
|
|
1775
|
-
StringCondition?: StringCondition;
|
|
1776
|
-
}
|
|
1777
|
-
export interface SecurityProfileSearchCriteria {
|
|
1778
|
-
OrConditions?: SecurityProfileSearchCriteria[];
|
|
1779
|
-
AndConditions?: SecurityProfileSearchCriteria[];
|
|
1780
|
-
StringCondition?: StringCondition;
|
|
1781
|
-
}
|
|
1782
|
-
export interface UpdateEvaluationFormRequest {
|
|
1783
|
-
InstanceId: string | undefined;
|
|
1784
|
-
EvaluationFormId: string | undefined;
|
|
1785
|
-
EvaluationFormVersion: number | undefined;
|
|
1786
|
-
CreateNewVersion?: boolean;
|
|
1787
|
-
Title: string | undefined;
|
|
1788
|
-
Description?: string;
|
|
1789
|
-
Items: EvaluationFormItem[] | undefined;
|
|
1790
|
-
ScoringStrategy?: EvaluationFormScoringStrategy;
|
|
1791
|
-
ClientToken?: string;
|
|
1792
|
-
}
|
|
1793
|
-
export interface UserSearchCriteria {
|
|
1794
|
-
OrConditions?: UserSearchCriteria[];
|
|
1795
|
-
AndConditions?: UserSearchCriteria[];
|
|
1796
|
-
StringCondition?: StringCondition;
|
|
1797
|
-
HierarchyGroupCondition?: HierarchyGroupCondition;
|
|
1798
|
-
}
|
|
1799
|
-
export interface DescribeContactEvaluationResponse {
|
|
1800
|
-
Evaluation: Evaluation | undefined;
|
|
1801
|
-
EvaluationForm: EvaluationFormContent | undefined;
|
|
1802
|
-
}
|
|
1803
1798
|
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
1804
1799
|
export declare const GetFederationTokenResponseFilterSensitiveLog: (
|
|
1805
1800
|
obj: GetFederationTokenResponse
|
|
@@ -1,20 +1,57 @@
|
|
|
1
|
+
import { Evaluation, EvaluationFormScoringStrategy } from "./models_0";
|
|
1
2
|
import {
|
|
2
3
|
EvaluationForm,
|
|
4
|
+
EvaluationFormContent,
|
|
5
|
+
EvaluationFormItem,
|
|
6
|
+
HierarchyGroupCondition,
|
|
3
7
|
HoursOfOperationSearchCriteria,
|
|
4
8
|
HoursOfOperationSearchFilter,
|
|
5
9
|
PromptSearchCriteria,
|
|
6
10
|
PromptSearchFilter,
|
|
7
11
|
QueueSearchCriteria,
|
|
8
12
|
QueueSearchFilter,
|
|
9
|
-
QuickConnectSearchCriteria,
|
|
10
13
|
QuickConnectSearchFilter,
|
|
11
|
-
RoutingProfileSearchCriteria,
|
|
12
14
|
RoutingProfileSearchFilter,
|
|
13
|
-
SecurityProfileSearchCriteria,
|
|
14
15
|
SecurityProfilesSearchFilter,
|
|
15
|
-
|
|
16
|
+
StringCondition,
|
|
16
17
|
UserSearchFilter,
|
|
17
18
|
} from "./models_1";
|
|
19
|
+
export interface QuickConnectSearchCriteria {
|
|
20
|
+
OrConditions?: QuickConnectSearchCriteria[];
|
|
21
|
+
AndConditions?: QuickConnectSearchCriteria[];
|
|
22
|
+
StringCondition?: StringCondition;
|
|
23
|
+
}
|
|
24
|
+
export interface RoutingProfileSearchCriteria {
|
|
25
|
+
OrConditions?: RoutingProfileSearchCriteria[];
|
|
26
|
+
AndConditions?: RoutingProfileSearchCriteria[];
|
|
27
|
+
StringCondition?: StringCondition;
|
|
28
|
+
}
|
|
29
|
+
export interface SecurityProfileSearchCriteria {
|
|
30
|
+
OrConditions?: SecurityProfileSearchCriteria[];
|
|
31
|
+
AndConditions?: SecurityProfileSearchCriteria[];
|
|
32
|
+
StringCondition?: StringCondition;
|
|
33
|
+
}
|
|
34
|
+
export interface UpdateEvaluationFormRequest {
|
|
35
|
+
InstanceId: string | undefined;
|
|
36
|
+
EvaluationFormId: string | undefined;
|
|
37
|
+
EvaluationFormVersion: number | undefined;
|
|
38
|
+
CreateNewVersion?: boolean;
|
|
39
|
+
Title: string | undefined;
|
|
40
|
+
Description?: string;
|
|
41
|
+
Items: EvaluationFormItem[] | undefined;
|
|
42
|
+
ScoringStrategy?: EvaluationFormScoringStrategy;
|
|
43
|
+
ClientToken?: string;
|
|
44
|
+
}
|
|
45
|
+
export interface UserSearchCriteria {
|
|
46
|
+
OrConditions?: UserSearchCriteria[];
|
|
47
|
+
AndConditions?: UserSearchCriteria[];
|
|
48
|
+
StringCondition?: StringCondition;
|
|
49
|
+
HierarchyGroupCondition?: HierarchyGroupCondition;
|
|
50
|
+
}
|
|
51
|
+
export interface DescribeContactEvaluationResponse {
|
|
52
|
+
Evaluation: Evaluation | undefined;
|
|
53
|
+
EvaluationForm: EvaluationFormContent | undefined;
|
|
54
|
+
}
|
|
18
55
|
export interface DescribeEvaluationFormResponse {
|
|
19
56
|
EvaluationForm: EvaluationForm | undefined;
|
|
20
57
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchResourceTagsCommandInput,
|
|
4
|
+
SearchResourceTagsCommandOutput,
|
|
5
|
+
} from "../commands/SearchResourceTagsCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateSearchResourceTags(
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: SearchResourceTagsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<SearchResourceTagsCommandOutput>;
|
|
@@ -42,6 +42,7 @@ export * from "./SearchHoursOfOperationsPaginator";
|
|
|
42
42
|
export * from "./SearchPromptsPaginator";
|
|
43
43
|
export * from "./SearchQueuesPaginator";
|
|
44
44
|
export * from "./SearchQuickConnectsPaginator";
|
|
45
|
+
export * from "./SearchResourceTagsPaginator";
|
|
45
46
|
export * from "./SearchRoutingProfilesPaginator";
|
|
46
47
|
export * from "./SearchSecurityProfilesPaginator";
|
|
47
48
|
export * from "./SearchUsersPaginator";
|
|
@@ -547,6 +547,10 @@ import {
|
|
|
547
547
|
SearchQuickConnectsCommandInput,
|
|
548
548
|
SearchQuickConnectsCommandOutput,
|
|
549
549
|
} from "../commands/SearchQuickConnectsCommand";
|
|
550
|
+
import {
|
|
551
|
+
SearchResourceTagsCommandInput,
|
|
552
|
+
SearchResourceTagsCommandOutput,
|
|
553
|
+
} from "../commands/SearchResourceTagsCommand";
|
|
550
554
|
import {
|
|
551
555
|
SearchRoutingProfilesCommandInput,
|
|
552
556
|
SearchRoutingProfilesCommandOutput,
|
|
@@ -1319,6 +1323,10 @@ export declare const se_SearchQuickConnectsCommand: (
|
|
|
1319
1323
|
input: SearchQuickConnectsCommandInput,
|
|
1320
1324
|
context: __SerdeContext
|
|
1321
1325
|
) => Promise<__HttpRequest>;
|
|
1326
|
+
export declare const se_SearchResourceTagsCommand: (
|
|
1327
|
+
input: SearchResourceTagsCommandInput,
|
|
1328
|
+
context: __SerdeContext
|
|
1329
|
+
) => Promise<__HttpRequest>;
|
|
1322
1330
|
export declare const se_SearchRoutingProfilesCommand: (
|
|
1323
1331
|
input: SearchRoutingProfilesCommandInput,
|
|
1324
1332
|
context: __SerdeContext
|
|
@@ -2091,6 +2099,10 @@ export declare const de_SearchQuickConnectsCommand: (
|
|
|
2091
2099
|
output: __HttpResponse,
|
|
2092
2100
|
context: __SerdeContext
|
|
2093
2101
|
) => Promise<SearchQuickConnectsCommandOutput>;
|
|
2102
|
+
export declare const de_SearchResourceTagsCommand: (
|
|
2103
|
+
output: __HttpResponse,
|
|
2104
|
+
context: __SerdeContext
|
|
2105
|
+
) => Promise<SearchResourceTagsCommandOutput>;
|
|
2094
2106
|
export declare const de_SearchRoutingProfilesCommand: (
|
|
2095
2107
|
output: __HttpResponse,
|
|
2096
2108
|
context: __SerdeContext
|
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.360.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.360.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.357.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.360.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.357.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.357.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.357.0",
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.357.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.357.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.357.0",
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.360.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.360.0",
|
|
43
43
|
"@aws-sdk/types": "3.357.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.357.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.360.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.360.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.357.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.357.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.357.0",
|