@aws-sdk/client-connect 3.348.0 → 3.350.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 +24 -0
- package/dist-cjs/Connect.js +6 -0
- package/dist-cjs/commands/SearchHoursOfOperationsCommand.js +46 -0
- package/dist-cjs/commands/SearchPromptsCommand.js +46 -0
- package/dist-cjs/commands/SearchQuickConnectsCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_1.js +4 -4
- package/dist-cjs/models/models_2.js +2 -0
- package/dist-cjs/pagination/SearchHoursOfOperationsPaginator.js +29 -0
- package/dist-cjs/pagination/SearchPromptsPaginator.js +29 -0
- package/dist-cjs/pagination/SearchQuickConnectsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +267 -6
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/SearchHoursOfOperationsCommand.js +42 -0
- package/dist-es/commands/SearchPromptsCommand.js +42 -0
- package/dist-es/commands/SearchQuickConnectsCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_1.js +3 -3
- package/dist-es/models/models_2.js +1 -0
- package/dist-es/pagination/SearchHoursOfOperationsPaginator.js +25 -0
- package/dist-es/pagination/SearchPromptsPaginator.js +25 -0
- package/dist-es/pagination/SearchQuickConnectsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +255 -0
- package/dist-types/Connect.d.ts +21 -0
- package/dist-types/ConnectClient.d.ts +5 -2
- package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +1 -1
- package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +161 -0
- package/dist-types/commands/SearchPromptsCommand.d.ts +147 -0
- package/dist-types/commands/SearchQueuesCommand.d.ts +2 -1
- package/dist-types/commands/SearchQuickConnectsCommand.d.ts +161 -0
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +2 -1
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +2 -1
- package/dist-types/commands/SearchUsersCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +202 -163
- package/dist-types/models/models_2.d.ts +216 -0
- package/dist-types/pagination/SearchHoursOfOperationsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchPromptsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchQuickConnectsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Connect.d.ts +51 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DescribeEvaluationFormCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchHoursOfOperationsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/SearchPromptsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/SearchQueuesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/SearchQuickConnectsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/SearchRoutingProfilesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +47 -36
- package/dist-types/ts3.4/models/models_2.d.ts +69 -0
- package/dist-types/ts3.4/pagination/SearchHoursOfOperationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchPromptsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchQuickConnectsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +4 -4
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput } from "../commands/SearchQuickConnectsCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateSearchQuickConnects(config: ConnectPaginationConfiguration, input: SearchQuickConnectsCommandInput, ...additionalArguments: any): Paginator<SearchQuickConnectsCommandOutput>;
|
|
@@ -38,7 +38,10 @@ export * from "./ListUseCasesPaginator";
|
|
|
38
38
|
export * from "./ListUserHierarchyGroupsPaginator";
|
|
39
39
|
export * from "./ListUsersPaginator";
|
|
40
40
|
export * from "./SearchAvailablePhoneNumbersPaginator";
|
|
41
|
+
export * from "./SearchHoursOfOperationsPaginator";
|
|
42
|
+
export * from "./SearchPromptsPaginator";
|
|
41
43
|
export * from "./SearchQueuesPaginator";
|
|
44
|
+
export * from "./SearchQuickConnectsPaginator";
|
|
42
45
|
export * from "./SearchRoutingProfilesPaginator";
|
|
43
46
|
export * from "./SearchSecurityProfilesPaginator";
|
|
44
47
|
export * from "./SearchUsersPaginator";
|
|
@@ -132,7 +132,10 @@ import { ReleasePhoneNumberCommandInput, ReleasePhoneNumberCommandOutput } from
|
|
|
132
132
|
import { ReplicateInstanceCommandInput, ReplicateInstanceCommandOutput } from "../commands/ReplicateInstanceCommand";
|
|
133
133
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "../commands/ResumeContactRecordingCommand";
|
|
134
134
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "../commands/SearchAvailablePhoneNumbersCommand";
|
|
135
|
+
import { SearchHoursOfOperationsCommandInput, SearchHoursOfOperationsCommandOutput } from "../commands/SearchHoursOfOperationsCommand";
|
|
136
|
+
import { SearchPromptsCommandInput, SearchPromptsCommandOutput } from "../commands/SearchPromptsCommand";
|
|
135
137
|
import { SearchQueuesCommandInput, SearchQueuesCommandOutput } from "../commands/SearchQueuesCommand";
|
|
138
|
+
import { SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput } from "../commands/SearchQuickConnectsCommand";
|
|
136
139
|
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "../commands/SearchRoutingProfilesCommand";
|
|
137
140
|
import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput } from "../commands/SearchSecurityProfilesCommand";
|
|
138
141
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "../commands/SearchUsersCommand";
|
|
@@ -718,10 +721,22 @@ export declare const se_ResumeContactRecordingCommand: (input: ResumeContactReco
|
|
|
718
721
|
* serializeAws_restJson1SearchAvailablePhoneNumbersCommand
|
|
719
722
|
*/
|
|
720
723
|
export declare const se_SearchAvailablePhoneNumbersCommand: (input: SearchAvailablePhoneNumbersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
724
|
+
/**
|
|
725
|
+
* serializeAws_restJson1SearchHoursOfOperationsCommand
|
|
726
|
+
*/
|
|
727
|
+
export declare const se_SearchHoursOfOperationsCommand: (input: SearchHoursOfOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
728
|
+
/**
|
|
729
|
+
* serializeAws_restJson1SearchPromptsCommand
|
|
730
|
+
*/
|
|
731
|
+
export declare const se_SearchPromptsCommand: (input: SearchPromptsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
721
732
|
/**
|
|
722
733
|
* serializeAws_restJson1SearchQueuesCommand
|
|
723
734
|
*/
|
|
724
735
|
export declare const se_SearchQueuesCommand: (input: SearchQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
736
|
+
/**
|
|
737
|
+
* serializeAws_restJson1SearchQuickConnectsCommand
|
|
738
|
+
*/
|
|
739
|
+
export declare const se_SearchQuickConnectsCommand: (input: SearchQuickConnectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
725
740
|
/**
|
|
726
741
|
* serializeAws_restJson1SearchRoutingProfilesCommand
|
|
727
742
|
*/
|
|
@@ -1478,10 +1493,22 @@ export declare const de_ResumeContactRecordingCommand: (output: __HttpResponse,
|
|
|
1478
1493
|
* deserializeAws_restJson1SearchAvailablePhoneNumbersCommand
|
|
1479
1494
|
*/
|
|
1480
1495
|
export declare const de_SearchAvailablePhoneNumbersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
1496
|
+
/**
|
|
1497
|
+
* deserializeAws_restJson1SearchHoursOfOperationsCommand
|
|
1498
|
+
*/
|
|
1499
|
+
export declare const de_SearchHoursOfOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchHoursOfOperationsCommandOutput>;
|
|
1500
|
+
/**
|
|
1501
|
+
* deserializeAws_restJson1SearchPromptsCommand
|
|
1502
|
+
*/
|
|
1503
|
+
export declare const de_SearchPromptsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchPromptsCommandOutput>;
|
|
1481
1504
|
/**
|
|
1482
1505
|
* deserializeAws_restJson1SearchQueuesCommand
|
|
1483
1506
|
*/
|
|
1484
1507
|
export declare const de_SearchQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchQueuesCommandOutput>;
|
|
1508
|
+
/**
|
|
1509
|
+
* deserializeAws_restJson1SearchQuickConnectsCommand
|
|
1510
|
+
*/
|
|
1511
|
+
export declare const de_SearchQuickConnectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchQuickConnectsCommandOutput>;
|
|
1485
1512
|
/**
|
|
1486
1513
|
* deserializeAws_restJson1SearchRoutingProfilesCommand
|
|
1487
1514
|
*/
|
|
@@ -527,10 +527,22 @@ import {
|
|
|
527
527
|
SearchAvailablePhoneNumbersCommandInput,
|
|
528
528
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
529
529
|
} from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
530
|
+
import {
|
|
531
|
+
SearchHoursOfOperationsCommandInput,
|
|
532
|
+
SearchHoursOfOperationsCommandOutput,
|
|
533
|
+
} from "./commands/SearchHoursOfOperationsCommand";
|
|
534
|
+
import {
|
|
535
|
+
SearchPromptsCommandInput,
|
|
536
|
+
SearchPromptsCommandOutput,
|
|
537
|
+
} from "./commands/SearchPromptsCommand";
|
|
530
538
|
import {
|
|
531
539
|
SearchQueuesCommandInput,
|
|
532
540
|
SearchQueuesCommandOutput,
|
|
533
541
|
} from "./commands/SearchQueuesCommand";
|
|
542
|
+
import {
|
|
543
|
+
SearchQuickConnectsCommandInput,
|
|
544
|
+
SearchQuickConnectsCommandOutput,
|
|
545
|
+
} from "./commands/SearchQuickConnectsCommand";
|
|
534
546
|
import {
|
|
535
547
|
SearchRoutingProfilesCommandInput,
|
|
536
548
|
SearchRoutingProfilesCommandOutput,
|
|
@@ -2489,6 +2501,32 @@ export interface Connect {
|
|
|
2489
2501
|
options: __HttpHandlerOptions,
|
|
2490
2502
|
cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void
|
|
2491
2503
|
): void;
|
|
2504
|
+
searchHoursOfOperations(
|
|
2505
|
+
args: SearchHoursOfOperationsCommandInput,
|
|
2506
|
+
options?: __HttpHandlerOptions
|
|
2507
|
+
): Promise<SearchHoursOfOperationsCommandOutput>;
|
|
2508
|
+
searchHoursOfOperations(
|
|
2509
|
+
args: SearchHoursOfOperationsCommandInput,
|
|
2510
|
+
cb: (err: any, data?: SearchHoursOfOperationsCommandOutput) => void
|
|
2511
|
+
): void;
|
|
2512
|
+
searchHoursOfOperations(
|
|
2513
|
+
args: SearchHoursOfOperationsCommandInput,
|
|
2514
|
+
options: __HttpHandlerOptions,
|
|
2515
|
+
cb: (err: any, data?: SearchHoursOfOperationsCommandOutput) => void
|
|
2516
|
+
): void;
|
|
2517
|
+
searchPrompts(
|
|
2518
|
+
args: SearchPromptsCommandInput,
|
|
2519
|
+
options?: __HttpHandlerOptions
|
|
2520
|
+
): Promise<SearchPromptsCommandOutput>;
|
|
2521
|
+
searchPrompts(
|
|
2522
|
+
args: SearchPromptsCommandInput,
|
|
2523
|
+
cb: (err: any, data?: SearchPromptsCommandOutput) => void
|
|
2524
|
+
): void;
|
|
2525
|
+
searchPrompts(
|
|
2526
|
+
args: SearchPromptsCommandInput,
|
|
2527
|
+
options: __HttpHandlerOptions,
|
|
2528
|
+
cb: (err: any, data?: SearchPromptsCommandOutput) => void
|
|
2529
|
+
): void;
|
|
2492
2530
|
searchQueues(
|
|
2493
2531
|
args: SearchQueuesCommandInput,
|
|
2494
2532
|
options?: __HttpHandlerOptions
|
|
@@ -2502,6 +2540,19 @@ export interface Connect {
|
|
|
2502
2540
|
options: __HttpHandlerOptions,
|
|
2503
2541
|
cb: (err: any, data?: SearchQueuesCommandOutput) => void
|
|
2504
2542
|
): void;
|
|
2543
|
+
searchQuickConnects(
|
|
2544
|
+
args: SearchQuickConnectsCommandInput,
|
|
2545
|
+
options?: __HttpHandlerOptions
|
|
2546
|
+
): Promise<SearchQuickConnectsCommandOutput>;
|
|
2547
|
+
searchQuickConnects(
|
|
2548
|
+
args: SearchQuickConnectsCommandInput,
|
|
2549
|
+
cb: (err: any, data?: SearchQuickConnectsCommandOutput) => void
|
|
2550
|
+
): void;
|
|
2551
|
+
searchQuickConnects(
|
|
2552
|
+
args: SearchQuickConnectsCommandInput,
|
|
2553
|
+
options: __HttpHandlerOptions,
|
|
2554
|
+
cb: (err: any, data?: SearchQuickConnectsCommandOutput) => void
|
|
2555
|
+
): void;
|
|
2505
2556
|
searchRoutingProfiles(
|
|
2506
2557
|
args: SearchRoutingProfilesCommandInput,
|
|
2507
2558
|
options?: __HttpHandlerOptions
|
|
@@ -574,10 +574,22 @@ import {
|
|
|
574
574
|
SearchAvailablePhoneNumbersCommandInput,
|
|
575
575
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
576
576
|
} from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
577
|
+
import {
|
|
578
|
+
SearchHoursOfOperationsCommandInput,
|
|
579
|
+
SearchHoursOfOperationsCommandOutput,
|
|
580
|
+
} from "./commands/SearchHoursOfOperationsCommand";
|
|
581
|
+
import {
|
|
582
|
+
SearchPromptsCommandInput,
|
|
583
|
+
SearchPromptsCommandOutput,
|
|
584
|
+
} from "./commands/SearchPromptsCommand";
|
|
577
585
|
import {
|
|
578
586
|
SearchQueuesCommandInput,
|
|
579
587
|
SearchQueuesCommandOutput,
|
|
580
588
|
} from "./commands/SearchQueuesCommand";
|
|
589
|
+
import {
|
|
590
|
+
SearchQuickConnectsCommandInput,
|
|
591
|
+
SearchQuickConnectsCommandOutput,
|
|
592
|
+
} from "./commands/SearchQuickConnectsCommand";
|
|
581
593
|
import {
|
|
582
594
|
SearchRoutingProfilesCommandInput,
|
|
583
595
|
SearchRoutingProfilesCommandOutput,
|
|
@@ -945,7 +957,10 @@ export type ServiceInputTypes =
|
|
|
945
957
|
| ReplicateInstanceCommandInput
|
|
946
958
|
| ResumeContactRecordingCommandInput
|
|
947
959
|
| SearchAvailablePhoneNumbersCommandInput
|
|
960
|
+
| SearchHoursOfOperationsCommandInput
|
|
961
|
+
| SearchPromptsCommandInput
|
|
948
962
|
| SearchQueuesCommandInput
|
|
963
|
+
| SearchQuickConnectsCommandInput
|
|
949
964
|
| SearchRoutingProfilesCommandInput
|
|
950
965
|
| SearchSecurityProfilesCommandInput
|
|
951
966
|
| SearchUsersCommandInput
|
|
@@ -1136,7 +1151,10 @@ export type ServiceOutputTypes =
|
|
|
1136
1151
|
| ReplicateInstanceCommandOutput
|
|
1137
1152
|
| ResumeContactRecordingCommandOutput
|
|
1138
1153
|
| SearchAvailablePhoneNumbersCommandOutput
|
|
1154
|
+
| SearchHoursOfOperationsCommandOutput
|
|
1155
|
+
| SearchPromptsCommandOutput
|
|
1139
1156
|
| SearchQueuesCommandOutput
|
|
1157
|
+
| SearchQuickConnectsCommandOutput
|
|
1140
1158
|
| SearchRoutingProfilesCommandOutput
|
|
1141
1159
|
| SearchSecurityProfilesCommandOutput
|
|
1142
1160
|
| SearchUsersCommandOutput
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
14
|
import { DescribeEvaluationFormRequest } from "../models/models_0";
|
|
15
|
-
import { DescribeEvaluationFormResponse } from "../models/
|
|
15
|
+
import { DescribeEvaluationFormResponse } from "../models/models_2";
|
|
16
16
|
export { __MetadataBearer, $Command };
|
|
17
17
|
export interface DescribeEvaluationFormCommandInput
|
|
18
18
|
extends DescribeEvaluationFormRequest {}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 { SearchHoursOfOperationsResponse } from "../models/models_1";
|
|
15
|
+
import { SearchHoursOfOperationsRequest } from "../models/models_2";
|
|
16
|
+
export { __MetadataBearer, $Command };
|
|
17
|
+
export interface SearchHoursOfOperationsCommandInput
|
|
18
|
+
extends SearchHoursOfOperationsRequest {}
|
|
19
|
+
export interface SearchHoursOfOperationsCommandOutput
|
|
20
|
+
extends SearchHoursOfOperationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class SearchHoursOfOperationsCommand extends $Command<
|
|
23
|
+
SearchHoursOfOperationsCommandInput,
|
|
24
|
+
SearchHoursOfOperationsCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: SearchHoursOfOperationsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: SearchHoursOfOperationsCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ConnectClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<
|
|
35
|
+
SearchHoursOfOperationsCommandInput,
|
|
36
|
+
SearchHoursOfOperationsCommandOutput
|
|
37
|
+
>;
|
|
38
|
+
private serialize;
|
|
39
|
+
private deserialize;
|
|
40
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { SearchPromptsResponse } from "../models/models_1";
|
|
15
|
+
import { SearchPromptsRequest } from "../models/models_2";
|
|
16
|
+
export { __MetadataBearer, $Command };
|
|
17
|
+
export interface SearchPromptsCommandInput extends SearchPromptsRequest {}
|
|
18
|
+
export interface SearchPromptsCommandOutput
|
|
19
|
+
extends SearchPromptsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class SearchPromptsCommand extends $Command<
|
|
22
|
+
SearchPromptsCommandInput,
|
|
23
|
+
SearchPromptsCommandOutput,
|
|
24
|
+
ConnectClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: SearchPromptsCommandInput;
|
|
27
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
|
+
constructor(input: SearchPromptsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ConnectClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<SearchPromptsCommandInput, SearchPromptsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -11,7 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
14
|
+
import { SearchQueuesResponse } from "../models/models_1";
|
|
15
|
+
import { SearchQueuesRequest } from "../models/models_2";
|
|
15
16
|
export { __MetadataBearer, $Command };
|
|
16
17
|
export interface SearchQueuesCommandInput extends SearchQueuesRequest {}
|
|
17
18
|
export interface SearchQueuesCommandOutput
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { SearchQuickConnectsResponse } from "../models/models_1";
|
|
15
|
+
import { SearchQuickConnectsRequest } from "../models/models_2";
|
|
16
|
+
export { __MetadataBearer, $Command };
|
|
17
|
+
export interface SearchQuickConnectsCommandInput
|
|
18
|
+
extends SearchQuickConnectsRequest {}
|
|
19
|
+
export interface SearchQuickConnectsCommandOutput
|
|
20
|
+
extends SearchQuickConnectsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class SearchQuickConnectsCommand extends $Command<
|
|
23
|
+
SearchQuickConnectsCommandInput,
|
|
24
|
+
SearchQuickConnectsCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: SearchQuickConnectsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: SearchQuickConnectsCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ConnectClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
SearchRoutingProfilesResponse,
|
|
17
|
-
} from "../models/models_1";
|
|
14
|
+
import { SearchRoutingProfilesResponse } from "../models/models_1";
|
|
15
|
+
import { SearchRoutingProfilesRequest } from "../models/models_2";
|
|
18
16
|
export { __MetadataBearer, $Command };
|
|
19
17
|
export interface SearchRoutingProfilesCommandInput
|
|
20
18
|
extends SearchRoutingProfilesRequest {}
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
SearchSecurityProfilesResponse,
|
|
17
|
-
} from "../models/models_1";
|
|
14
|
+
import { SearchSecurityProfilesResponse } from "../models/models_1";
|
|
15
|
+
import { SearchSecurityProfilesRequest } from "../models/models_2";
|
|
18
16
|
export { __MetadataBearer, $Command };
|
|
19
17
|
export interface SearchSecurityProfilesCommandInput
|
|
20
18
|
extends SearchSecurityProfilesRequest {}
|
|
@@ -11,7 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
14
|
+
import { SearchUsersResponse } from "../models/models_1";
|
|
15
|
+
import { SearchUsersRequest } from "../models/models_2";
|
|
15
16
|
export { __MetadataBearer, $Command };
|
|
16
17
|
export interface SearchUsersCommandInput extends SearchUsersRequest {}
|
|
17
18
|
export interface SearchUsersCommandOutput
|
|
@@ -130,7 +130,10 @@ export * from "./ReleasePhoneNumberCommand";
|
|
|
130
130
|
export * from "./ReplicateInstanceCommand";
|
|
131
131
|
export * from "./ResumeContactRecordingCommand";
|
|
132
132
|
export * from "./SearchAvailablePhoneNumbersCommand";
|
|
133
|
+
export * from "./SearchHoursOfOperationsCommand";
|
|
134
|
+
export * from "./SearchPromptsCommand";
|
|
133
135
|
export * from "./SearchQueuesCommand";
|
|
136
|
+
export * from "./SearchQuickConnectsCommand";
|
|
134
137
|
export * from "./SearchRoutingProfilesCommand";
|
|
135
138
|
export * from "./SearchSecurityProfilesCommand";
|
|
136
139
|
export * from "./SearchUsersCommand";
|
|
@@ -27,6 +27,7 @@ import {
|
|
|
27
27
|
Filters,
|
|
28
28
|
Grouping,
|
|
29
29
|
HierarchyGroupSummary,
|
|
30
|
+
HoursOfOperation,
|
|
30
31
|
HoursOfOperationConfig,
|
|
31
32
|
InstanceAttributeType,
|
|
32
33
|
InstanceStatus,
|
|
@@ -40,9 +41,11 @@ import {
|
|
|
40
41
|
OutboundCallerConfig,
|
|
41
42
|
PhoneNumberCountryCode,
|
|
42
43
|
PhoneNumberType,
|
|
44
|
+
Prompt,
|
|
43
45
|
Queue,
|
|
44
46
|
QueueReference,
|
|
45
47
|
QueueStatus,
|
|
48
|
+
QuickConnect,
|
|
46
49
|
QuickConnectConfig,
|
|
47
50
|
QuickConnectType,
|
|
48
51
|
Reference,
|
|
@@ -997,11 +1000,6 @@ export interface SearchAvailablePhoneNumbersResponse {
|
|
|
997
1000
|
NextToken?: string;
|
|
998
1001
|
AvailableNumbersList?: AvailableNumberSummary[];
|
|
999
1002
|
}
|
|
1000
|
-
export declare const SearchableQueueType: {
|
|
1001
|
-
readonly STANDARD: "STANDARD";
|
|
1002
|
-
};
|
|
1003
|
-
export type SearchableQueueType =
|
|
1004
|
-
(typeof SearchableQueueType)[keyof typeof SearchableQueueType];
|
|
1005
1003
|
export declare const StringComparisonType: {
|
|
1006
1004
|
readonly CONTAINS: "CONTAINS";
|
|
1007
1005
|
readonly EXACT: "EXACT";
|
|
@@ -1023,6 +1021,27 @@ export interface ControlPlaneTagFilter {
|
|
|
1023
1021
|
AndConditions?: TagCondition[];
|
|
1024
1022
|
TagCondition?: TagCondition;
|
|
1025
1023
|
}
|
|
1024
|
+
export interface HoursOfOperationSearchFilter {
|
|
1025
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
1026
|
+
}
|
|
1027
|
+
export interface SearchHoursOfOperationsResponse {
|
|
1028
|
+
HoursOfOperations?: HoursOfOperation[];
|
|
1029
|
+
NextToken?: string;
|
|
1030
|
+
ApproximateTotalCount?: number;
|
|
1031
|
+
}
|
|
1032
|
+
export interface PromptSearchFilter {
|
|
1033
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
1034
|
+
}
|
|
1035
|
+
export interface SearchPromptsResponse {
|
|
1036
|
+
Prompts?: Prompt[];
|
|
1037
|
+
NextToken?: string;
|
|
1038
|
+
ApproximateTotalCount?: number;
|
|
1039
|
+
}
|
|
1040
|
+
export declare const SearchableQueueType: {
|
|
1041
|
+
readonly STANDARD: "STANDARD";
|
|
1042
|
+
};
|
|
1043
|
+
export type SearchableQueueType =
|
|
1044
|
+
(typeof SearchableQueueType)[keyof typeof SearchableQueueType];
|
|
1026
1045
|
export interface QueueSearchFilter {
|
|
1027
1046
|
TagFilter?: ControlPlaneTagFilter;
|
|
1028
1047
|
}
|
|
@@ -1031,6 +1050,14 @@ export interface SearchQueuesResponse {
|
|
|
1031
1050
|
NextToken?: string;
|
|
1032
1051
|
ApproximateTotalCount?: number;
|
|
1033
1052
|
}
|
|
1053
|
+
export interface QuickConnectSearchFilter {
|
|
1054
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
1055
|
+
}
|
|
1056
|
+
export interface SearchQuickConnectsResponse {
|
|
1057
|
+
QuickConnects?: QuickConnect[];
|
|
1058
|
+
NextToken?: string;
|
|
1059
|
+
ApproximateTotalCount?: number;
|
|
1060
|
+
}
|
|
1034
1061
|
export interface RoutingProfileSearchFilter {
|
|
1035
1062
|
TagFilter?: ControlPlaneTagFilter;
|
|
1036
1063
|
}
|
|
@@ -1720,12 +1747,27 @@ export interface EvaluationFormContent {
|
|
|
1720
1747
|
Items: EvaluationFormItem[] | undefined;
|
|
1721
1748
|
ScoringStrategy?: EvaluationFormScoringStrategy;
|
|
1722
1749
|
}
|
|
1750
|
+
export interface HoursOfOperationSearchCriteria {
|
|
1751
|
+
OrConditions?: HoursOfOperationSearchCriteria[];
|
|
1752
|
+
AndConditions?: HoursOfOperationSearchCriteria[];
|
|
1753
|
+
StringCondition?: StringCondition;
|
|
1754
|
+
}
|
|
1755
|
+
export interface PromptSearchCriteria {
|
|
1756
|
+
OrConditions?: PromptSearchCriteria[];
|
|
1757
|
+
AndConditions?: PromptSearchCriteria[];
|
|
1758
|
+
StringCondition?: StringCondition;
|
|
1759
|
+
}
|
|
1723
1760
|
export interface QueueSearchCriteria {
|
|
1724
1761
|
OrConditions?: QueueSearchCriteria[];
|
|
1725
1762
|
AndConditions?: QueueSearchCriteria[];
|
|
1726
1763
|
StringCondition?: StringCondition;
|
|
1727
1764
|
QueueTypeCondition?: SearchableQueueType | string;
|
|
1728
1765
|
}
|
|
1766
|
+
export interface QuickConnectSearchCriteria {
|
|
1767
|
+
OrConditions?: QuickConnectSearchCriteria[];
|
|
1768
|
+
AndConditions?: QuickConnectSearchCriteria[];
|
|
1769
|
+
StringCondition?: StringCondition;
|
|
1770
|
+
}
|
|
1729
1771
|
export interface RoutingProfileSearchCriteria {
|
|
1730
1772
|
OrConditions?: RoutingProfileSearchCriteria[];
|
|
1731
1773
|
AndConditions?: RoutingProfileSearchCriteria[];
|
|
@@ -1757,37 +1799,6 @@ export interface DescribeContactEvaluationResponse {
|
|
|
1757
1799
|
Evaluation: Evaluation | undefined;
|
|
1758
1800
|
EvaluationForm: EvaluationFormContent | undefined;
|
|
1759
1801
|
}
|
|
1760
|
-
export interface DescribeEvaluationFormResponse {
|
|
1761
|
-
EvaluationForm: EvaluationForm | undefined;
|
|
1762
|
-
}
|
|
1763
|
-
export interface SearchQueuesRequest {
|
|
1764
|
-
InstanceId: string | undefined;
|
|
1765
|
-
NextToken?: string;
|
|
1766
|
-
MaxResults?: number;
|
|
1767
|
-
SearchFilter?: QueueSearchFilter;
|
|
1768
|
-
SearchCriteria?: QueueSearchCriteria;
|
|
1769
|
-
}
|
|
1770
|
-
export interface SearchRoutingProfilesRequest {
|
|
1771
|
-
InstanceId: string | undefined;
|
|
1772
|
-
NextToken?: string;
|
|
1773
|
-
MaxResults?: number;
|
|
1774
|
-
SearchFilter?: RoutingProfileSearchFilter;
|
|
1775
|
-
SearchCriteria?: RoutingProfileSearchCriteria;
|
|
1776
|
-
}
|
|
1777
|
-
export interface SearchSecurityProfilesRequest {
|
|
1778
|
-
InstanceId: string | undefined;
|
|
1779
|
-
NextToken?: string;
|
|
1780
|
-
MaxResults?: number;
|
|
1781
|
-
SearchCriteria?: SecurityProfileSearchCriteria;
|
|
1782
|
-
SearchFilter?: SecurityProfilesSearchFilter;
|
|
1783
|
-
}
|
|
1784
|
-
export interface SearchUsersRequest {
|
|
1785
|
-
InstanceId?: string;
|
|
1786
|
-
NextToken?: string;
|
|
1787
|
-
MaxResults?: number;
|
|
1788
|
-
SearchFilter?: UserSearchFilter;
|
|
1789
|
-
SearchCriteria?: UserSearchCriteria;
|
|
1790
|
-
}
|
|
1791
1802
|
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
1792
1803
|
export declare const GetFederationTokenResponseFilterSensitiveLog: (
|
|
1793
1804
|
obj: GetFederationTokenResponse
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import {
|
|
2
|
+
EvaluationForm,
|
|
3
|
+
HoursOfOperationSearchCriteria,
|
|
4
|
+
HoursOfOperationSearchFilter,
|
|
5
|
+
PromptSearchCriteria,
|
|
6
|
+
PromptSearchFilter,
|
|
7
|
+
QueueSearchCriteria,
|
|
8
|
+
QueueSearchFilter,
|
|
9
|
+
QuickConnectSearchCriteria,
|
|
10
|
+
QuickConnectSearchFilter,
|
|
11
|
+
RoutingProfileSearchCriteria,
|
|
12
|
+
RoutingProfileSearchFilter,
|
|
13
|
+
SecurityProfileSearchCriteria,
|
|
14
|
+
SecurityProfilesSearchFilter,
|
|
15
|
+
UserSearchCriteria,
|
|
16
|
+
UserSearchFilter,
|
|
17
|
+
} from "./models_1";
|
|
18
|
+
export interface DescribeEvaluationFormResponse {
|
|
19
|
+
EvaluationForm: EvaluationForm | undefined;
|
|
20
|
+
}
|
|
21
|
+
export interface SearchHoursOfOperationsRequest {
|
|
22
|
+
InstanceId: string | undefined;
|
|
23
|
+
NextToken?: string;
|
|
24
|
+
MaxResults?: number;
|
|
25
|
+
SearchFilter?: HoursOfOperationSearchFilter;
|
|
26
|
+
SearchCriteria?: HoursOfOperationSearchCriteria;
|
|
27
|
+
}
|
|
28
|
+
export interface SearchPromptsRequest {
|
|
29
|
+
InstanceId: string | undefined;
|
|
30
|
+
NextToken?: string;
|
|
31
|
+
MaxResults?: number;
|
|
32
|
+
SearchFilter?: PromptSearchFilter;
|
|
33
|
+
SearchCriteria?: PromptSearchCriteria;
|
|
34
|
+
}
|
|
35
|
+
export interface SearchQueuesRequest {
|
|
36
|
+
InstanceId: string | undefined;
|
|
37
|
+
NextToken?: string;
|
|
38
|
+
MaxResults?: number;
|
|
39
|
+
SearchFilter?: QueueSearchFilter;
|
|
40
|
+
SearchCriteria?: QueueSearchCriteria;
|
|
41
|
+
}
|
|
42
|
+
export interface SearchQuickConnectsRequest {
|
|
43
|
+
InstanceId: string | undefined;
|
|
44
|
+
NextToken?: string;
|
|
45
|
+
MaxResults?: number;
|
|
46
|
+
SearchFilter?: QuickConnectSearchFilter;
|
|
47
|
+
SearchCriteria?: QuickConnectSearchCriteria;
|
|
48
|
+
}
|
|
49
|
+
export interface SearchRoutingProfilesRequest {
|
|
50
|
+
InstanceId: string | undefined;
|
|
51
|
+
NextToken?: string;
|
|
52
|
+
MaxResults?: number;
|
|
53
|
+
SearchFilter?: RoutingProfileSearchFilter;
|
|
54
|
+
SearchCriteria?: RoutingProfileSearchCriteria;
|
|
55
|
+
}
|
|
56
|
+
export interface SearchSecurityProfilesRequest {
|
|
57
|
+
InstanceId: string | undefined;
|
|
58
|
+
NextToken?: string;
|
|
59
|
+
MaxResults?: number;
|
|
60
|
+
SearchCriteria?: SecurityProfileSearchCriteria;
|
|
61
|
+
SearchFilter?: SecurityProfilesSearchFilter;
|
|
62
|
+
}
|
|
63
|
+
export interface SearchUsersRequest {
|
|
64
|
+
InstanceId?: string;
|
|
65
|
+
NextToken?: string;
|
|
66
|
+
MaxResults?: number;
|
|
67
|
+
SearchFilter?: UserSearchFilter;
|
|
68
|
+
SearchCriteria?: UserSearchCriteria;
|
|
69
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchHoursOfOperationsCommandInput,
|
|
4
|
+
SearchHoursOfOperationsCommandOutput,
|
|
5
|
+
} from "../commands/SearchHoursOfOperationsCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateSearchHoursOfOperations(
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: SearchHoursOfOperationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<SearchHoursOfOperationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchPromptsCommandInput,
|
|
4
|
+
SearchPromptsCommandOutput,
|
|
5
|
+
} from "../commands/SearchPromptsCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateSearchPrompts(
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: SearchPromptsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<SearchPromptsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchQuickConnectsCommandInput,
|
|
4
|
+
SearchQuickConnectsCommandOutput,
|
|
5
|
+
} from "../commands/SearchQuickConnectsCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateSearchQuickConnects(
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: SearchQuickConnectsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<SearchQuickConnectsCommandOutput>;
|
|
@@ -38,7 +38,10 @@ export * from "./ListUseCasesPaginator";
|
|
|
38
38
|
export * from "./ListUserHierarchyGroupsPaginator";
|
|
39
39
|
export * from "./ListUsersPaginator";
|
|
40
40
|
export * from "./SearchAvailablePhoneNumbersPaginator";
|
|
41
|
+
export * from "./SearchHoursOfOperationsPaginator";
|
|
42
|
+
export * from "./SearchPromptsPaginator";
|
|
41
43
|
export * from "./SearchQueuesPaginator";
|
|
44
|
+
export * from "./SearchQuickConnectsPaginator";
|
|
42
45
|
export * from "./SearchRoutingProfilesPaginator";
|
|
43
46
|
export * from "./SearchSecurityProfilesPaginator";
|
|
44
47
|
export * from "./SearchUsersPaginator";
|