@aws-sdk/client-connect 3.614.0 → 3.618.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 +17 -2
- package/dist-cjs/index.js +227 -31
- package/dist-es/Connect.js +4 -0
- package/dist-es/ConnectClient.js +5 -5
- package/dist-es/commands/SearchAgentStatusesCommand.js +24 -0
- package/dist-es/commands/SearchUserHierarchyGroupsCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +5 -18
- package/dist-es/models/models_1.js +32 -0
- package/dist-es/models/models_2.js +12 -5
- package/dist-es/pagination/SearchAgentStatusesPaginator.js +4 -0
- package/dist-es/pagination/SearchUserHierarchyGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +118 -2
- package/dist-types/Connect.d.ts +16 -3
- package/dist-types/ConnectClient.d.ts +8 -7
- package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +1 -1
- package/dist-types/commands/ListRealtimeContactAnalysisSegmentsV2Command.d.ts +6 -1
- package/dist-types/commands/ListTrafficDistributionGroupUsersCommand.d.ts +1 -1
- package/dist-types/commands/ListTrafficDistributionGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUseCasesCommand.d.ts +1 -1
- package/dist-types/commands/SearchAgentStatusesCommand.d.ts +142 -0
- package/dist-types/commands/SearchUserHierarchyGroupsCommand.d.ts +181 -0
- package/dist-types/commands/SearchUsersCommand.d.ts +32 -4
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +2 -3
- package/dist-types/models/models_0.d.ts +128 -133
- package/dist-types/models/models_1.d.ts +335 -241
- package/dist-types/models/models_2.d.ts +537 -73
- package/dist-types/pagination/SearchAgentStatusesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchUserHierarchyGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +14 -2
- package/dist-types/ts3.4/commands/DescribeContactEvaluationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrafficDistributionGroupUsersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrafficDistributionGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUseCasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchAgentStatusesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/SearchUserHierarchyGroupsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -60
- package/dist-types/ts3.4/models/models_1.d.ts +100 -46
- package/dist-types/ts3.4/models/models_2.d.ts +125 -20
- package/dist-types/ts3.4/pagination/SearchAgentStatusesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchUserHierarchyGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +17 -17
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchAgentStatusesCommandInput, SearchAgentStatusesCommandOutput } from "../commands/SearchAgentStatusesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateSearchAgentStatuses: (config: ConnectPaginationConfiguration, input: SearchAgentStatusesCommandInput, ...rest: any[]) => Paginator<SearchAgentStatusesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchUserHierarchyGroupsCommandInput, SearchUserHierarchyGroupsCommandOutput } from "../commands/SearchUserHierarchyGroupsCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateSearchUserHierarchyGroups: (config: ConnectPaginationConfiguration, input: SearchUserHierarchyGroupsCommandInput, ...rest: any[]) => Paginator<SearchUserHierarchyGroupsCommandOutput>;
|
|
@@ -46,6 +46,7 @@ export * from "./ListUserProficienciesPaginator";
|
|
|
46
46
|
export * from "./ListUsersPaginator";
|
|
47
47
|
export * from "./ListViewVersionsPaginator";
|
|
48
48
|
export * from "./ListViewsPaginator";
|
|
49
|
+
export * from "./SearchAgentStatusesPaginator";
|
|
49
50
|
export * from "./SearchAvailablePhoneNumbersPaginator";
|
|
50
51
|
export * from "./SearchContactFlowModulesPaginator";
|
|
51
52
|
export * from "./SearchContactFlowsPaginator";
|
|
@@ -58,5 +59,6 @@ export * from "./SearchQuickConnectsPaginator";
|
|
|
58
59
|
export * from "./SearchResourceTagsPaginator";
|
|
59
60
|
export * from "./SearchRoutingProfilesPaginator";
|
|
60
61
|
export * from "./SearchSecurityProfilesPaginator";
|
|
62
|
+
export * from "./SearchUserHierarchyGroupsPaginator";
|
|
61
63
|
export * from "./SearchUsersPaginator";
|
|
62
64
|
export * from "./SearchVocabulariesPaginator";
|
|
@@ -173,6 +173,7 @@ import { ReleasePhoneNumberCommandInput, ReleasePhoneNumberCommandOutput } from
|
|
|
173
173
|
import { ReplicateInstanceCommandInput, ReplicateInstanceCommandOutput } from "../commands/ReplicateInstanceCommand";
|
|
174
174
|
import { ResumeContactCommandInput, ResumeContactCommandOutput } from "../commands/ResumeContactCommand";
|
|
175
175
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "../commands/ResumeContactRecordingCommand";
|
|
176
|
+
import { SearchAgentStatusesCommandInput, SearchAgentStatusesCommandOutput } from "../commands/SearchAgentStatusesCommand";
|
|
176
177
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "../commands/SearchAvailablePhoneNumbersCommand";
|
|
177
178
|
import { SearchContactFlowModulesCommandInput, SearchContactFlowModulesCommandOutput } from "../commands/SearchContactFlowModulesCommand";
|
|
178
179
|
import { SearchContactFlowsCommandInput, SearchContactFlowsCommandOutput } from "../commands/SearchContactFlowsCommand";
|
|
@@ -185,6 +186,7 @@ import { SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput } fro
|
|
|
185
186
|
import { SearchResourceTagsCommandInput, SearchResourceTagsCommandOutput } from "../commands/SearchResourceTagsCommand";
|
|
186
187
|
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "../commands/SearchRoutingProfilesCommand";
|
|
187
188
|
import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput } from "../commands/SearchSecurityProfilesCommand";
|
|
189
|
+
import { SearchUserHierarchyGroupsCommandInput, SearchUserHierarchyGroupsCommandOutput } from "../commands/SearchUserHierarchyGroupsCommand";
|
|
188
190
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "../commands/SearchUsersCommand";
|
|
189
191
|
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "../commands/SearchVocabulariesCommand";
|
|
190
192
|
import { SendChatIntegrationEventCommandInput, SendChatIntegrationEventCommandOutput } from "../commands/SendChatIntegrationEventCommand";
|
|
@@ -945,6 +947,10 @@ export declare const se_ResumeContactCommand: (input: ResumeContactCommandInput,
|
|
|
945
947
|
* serializeAws_restJson1ResumeContactRecordingCommand
|
|
946
948
|
*/
|
|
947
949
|
export declare const se_ResumeContactRecordingCommand: (input: ResumeContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
950
|
+
/**
|
|
951
|
+
* serializeAws_restJson1SearchAgentStatusesCommand
|
|
952
|
+
*/
|
|
953
|
+
export declare const se_SearchAgentStatusesCommand: (input: SearchAgentStatusesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
948
954
|
/**
|
|
949
955
|
* serializeAws_restJson1SearchAvailablePhoneNumbersCommand
|
|
950
956
|
*/
|
|
@@ -993,6 +999,10 @@ export declare const se_SearchRoutingProfilesCommand: (input: SearchRoutingProfi
|
|
|
993
999
|
* serializeAws_restJson1SearchSecurityProfilesCommand
|
|
994
1000
|
*/
|
|
995
1001
|
export declare const se_SearchSecurityProfilesCommand: (input: SearchSecurityProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1002
|
+
/**
|
|
1003
|
+
* serializeAws_restJson1SearchUserHierarchyGroupsCommand
|
|
1004
|
+
*/
|
|
1005
|
+
export declare const se_SearchUserHierarchyGroupsCommand: (input: SearchUserHierarchyGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
996
1006
|
/**
|
|
997
1007
|
* serializeAws_restJson1SearchUsersCommand
|
|
998
1008
|
*/
|
|
@@ -1957,6 +1967,10 @@ export declare const de_ResumeContactCommand: (output: __HttpResponse, context:
|
|
|
1957
1967
|
* deserializeAws_restJson1ResumeContactRecordingCommand
|
|
1958
1968
|
*/
|
|
1959
1969
|
export declare const de_ResumeContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeContactRecordingCommandOutput>;
|
|
1970
|
+
/**
|
|
1971
|
+
* deserializeAws_restJson1SearchAgentStatusesCommand
|
|
1972
|
+
*/
|
|
1973
|
+
export declare const de_SearchAgentStatusesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchAgentStatusesCommandOutput>;
|
|
1960
1974
|
/**
|
|
1961
1975
|
* deserializeAws_restJson1SearchAvailablePhoneNumbersCommand
|
|
1962
1976
|
*/
|
|
@@ -2005,6 +2019,10 @@ export declare const de_SearchRoutingProfilesCommand: (output: __HttpResponse, c
|
|
|
2005
2019
|
* deserializeAws_restJson1SearchSecurityProfilesCommand
|
|
2006
2020
|
*/
|
|
2007
2021
|
export declare const de_SearchSecurityProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchSecurityProfilesCommandOutput>;
|
|
2022
|
+
/**
|
|
2023
|
+
* deserializeAws_restJson1SearchUserHierarchyGroupsCommand
|
|
2024
|
+
*/
|
|
2025
|
+
export declare const de_SearchUserHierarchyGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchUserHierarchyGroupsCommandOutput>;
|
|
2008
2026
|
/**
|
|
2009
2027
|
* deserializeAws_restJson1SearchUsersCommand
|
|
2010
2028
|
*/
|
|
@@ -32,8 +32,8 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
|
32
32
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
33
|
}) => import("@smithy/types").EndpointV2;
|
|
34
34
|
tls?: boolean | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
35
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -32,8 +32,8 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
|
32
32
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
33
|
}) => import("@smithy/types").EndpointV2;
|
|
34
34
|
tls?: boolean | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
35
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -31,8 +31,8 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
|
31
31
|
logger?: import("@smithy/types").Logger | undefined;
|
|
32
32
|
}) => import("@smithy/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
34
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
36
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
37
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
38
38
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -691,6 +691,10 @@ import {
|
|
|
691
691
|
ResumeContactRecordingCommandInput,
|
|
692
692
|
ResumeContactRecordingCommandOutput,
|
|
693
693
|
} from "./commands/ResumeContactRecordingCommand";
|
|
694
|
+
import {
|
|
695
|
+
SearchAgentStatusesCommandInput,
|
|
696
|
+
SearchAgentStatusesCommandOutput,
|
|
697
|
+
} from "./commands/SearchAgentStatusesCommand";
|
|
694
698
|
import {
|
|
695
699
|
SearchAvailablePhoneNumbersCommandInput,
|
|
696
700
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
@@ -739,6 +743,10 @@ import {
|
|
|
739
743
|
SearchSecurityProfilesCommandInput,
|
|
740
744
|
SearchSecurityProfilesCommandOutput,
|
|
741
745
|
} from "./commands/SearchSecurityProfilesCommand";
|
|
746
|
+
import {
|
|
747
|
+
SearchUserHierarchyGroupsCommandInput,
|
|
748
|
+
SearchUserHierarchyGroupsCommandOutput,
|
|
749
|
+
} from "./commands/SearchUserHierarchyGroupsCommand";
|
|
742
750
|
import {
|
|
743
751
|
SearchUsersCommandInput,
|
|
744
752
|
SearchUsersCommandOutput,
|
|
@@ -3313,6 +3321,19 @@ export interface Connect {
|
|
|
3313
3321
|
options: __HttpHandlerOptions,
|
|
3314
3322
|
cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void
|
|
3315
3323
|
): void;
|
|
3324
|
+
searchAgentStatuses(
|
|
3325
|
+
args: SearchAgentStatusesCommandInput,
|
|
3326
|
+
options?: __HttpHandlerOptions
|
|
3327
|
+
): Promise<SearchAgentStatusesCommandOutput>;
|
|
3328
|
+
searchAgentStatuses(
|
|
3329
|
+
args: SearchAgentStatusesCommandInput,
|
|
3330
|
+
cb: (err: any, data?: SearchAgentStatusesCommandOutput) => void
|
|
3331
|
+
): void;
|
|
3332
|
+
searchAgentStatuses(
|
|
3333
|
+
args: SearchAgentStatusesCommandInput,
|
|
3334
|
+
options: __HttpHandlerOptions,
|
|
3335
|
+
cb: (err: any, data?: SearchAgentStatusesCommandOutput) => void
|
|
3336
|
+
): void;
|
|
3316
3337
|
searchAvailablePhoneNumbers(
|
|
3317
3338
|
args: SearchAvailablePhoneNumbersCommandInput,
|
|
3318
3339
|
options?: __HttpHandlerOptions
|
|
@@ -3469,6 +3490,19 @@ export interface Connect {
|
|
|
3469
3490
|
options: __HttpHandlerOptions,
|
|
3470
3491
|
cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void
|
|
3471
3492
|
): void;
|
|
3493
|
+
searchUserHierarchyGroups(
|
|
3494
|
+
args: SearchUserHierarchyGroupsCommandInput,
|
|
3495
|
+
options?: __HttpHandlerOptions
|
|
3496
|
+
): Promise<SearchUserHierarchyGroupsCommandOutput>;
|
|
3497
|
+
searchUserHierarchyGroups(
|
|
3498
|
+
args: SearchUserHierarchyGroupsCommandInput,
|
|
3499
|
+
cb: (err: any, data?: SearchUserHierarchyGroupsCommandOutput) => void
|
|
3500
|
+
): void;
|
|
3501
|
+
searchUserHierarchyGroups(
|
|
3502
|
+
args: SearchUserHierarchyGroupsCommandInput,
|
|
3503
|
+
options: __HttpHandlerOptions,
|
|
3504
|
+
cb: (err: any, data?: SearchUserHierarchyGroupsCommandOutput) => void
|
|
3505
|
+
): void;
|
|
3472
3506
|
searchUsers(
|
|
3473
3507
|
args: SearchUsersCommandInput,
|
|
3474
3508
|
options?: __HttpHandlerOptions
|
|
@@ -737,6 +737,10 @@ import {
|
|
|
737
737
|
ResumeContactRecordingCommandInput,
|
|
738
738
|
ResumeContactRecordingCommandOutput,
|
|
739
739
|
} from "./commands/ResumeContactRecordingCommand";
|
|
740
|
+
import {
|
|
741
|
+
SearchAgentStatusesCommandInput,
|
|
742
|
+
SearchAgentStatusesCommandOutput,
|
|
743
|
+
} from "./commands/SearchAgentStatusesCommand";
|
|
740
744
|
import {
|
|
741
745
|
SearchAvailablePhoneNumbersCommandInput,
|
|
742
746
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
@@ -785,6 +789,10 @@ import {
|
|
|
785
789
|
SearchSecurityProfilesCommandInput,
|
|
786
790
|
SearchSecurityProfilesCommandOutput,
|
|
787
791
|
} from "./commands/SearchSecurityProfilesCommand";
|
|
792
|
+
import {
|
|
793
|
+
SearchUserHierarchyGroupsCommandInput,
|
|
794
|
+
SearchUserHierarchyGroupsCommandOutput,
|
|
795
|
+
} from "./commands/SearchUserHierarchyGroupsCommand";
|
|
788
796
|
import {
|
|
789
797
|
SearchUsersCommandInput,
|
|
790
798
|
SearchUsersCommandOutput,
|
|
@@ -1238,6 +1246,7 @@ export type ServiceInputTypes =
|
|
|
1238
1246
|
| ReplicateInstanceCommandInput
|
|
1239
1247
|
| ResumeContactCommandInput
|
|
1240
1248
|
| ResumeContactRecordingCommandInput
|
|
1249
|
+
| SearchAgentStatusesCommandInput
|
|
1241
1250
|
| SearchAvailablePhoneNumbersCommandInput
|
|
1242
1251
|
| SearchContactFlowModulesCommandInput
|
|
1243
1252
|
| SearchContactFlowsCommandInput
|
|
@@ -1250,6 +1259,7 @@ export type ServiceInputTypes =
|
|
|
1250
1259
|
| SearchResourceTagsCommandInput
|
|
1251
1260
|
| SearchRoutingProfilesCommandInput
|
|
1252
1261
|
| SearchSecurityProfilesCommandInput
|
|
1262
|
+
| SearchUserHierarchyGroupsCommandInput
|
|
1253
1263
|
| SearchUsersCommandInput
|
|
1254
1264
|
| SearchVocabulariesCommandInput
|
|
1255
1265
|
| SendChatIntegrationEventCommandInput
|
|
@@ -1492,6 +1502,7 @@ export type ServiceOutputTypes =
|
|
|
1492
1502
|
| ReplicateInstanceCommandOutput
|
|
1493
1503
|
| ResumeContactCommandOutput
|
|
1494
1504
|
| ResumeContactRecordingCommandOutput
|
|
1505
|
+
| SearchAgentStatusesCommandOutput
|
|
1495
1506
|
| SearchAvailablePhoneNumbersCommandOutput
|
|
1496
1507
|
| SearchContactFlowModulesCommandOutput
|
|
1497
1508
|
| SearchContactFlowsCommandOutput
|
|
@@ -1504,6 +1515,7 @@ export type ServiceOutputTypes =
|
|
|
1504
1515
|
| SearchResourceTagsCommandOutput
|
|
1505
1516
|
| SearchRoutingProfilesCommandOutput
|
|
1506
1517
|
| SearchSecurityProfilesCommandOutput
|
|
1518
|
+
| SearchUserHierarchyGroupsCommandOutput
|
|
1507
1519
|
| SearchUsersCommandOutput
|
|
1508
1520
|
| SearchVocabulariesCommandOutput
|
|
1509
1521
|
| SendChatIntegrationEventCommandOutput
|
|
@@ -1603,9 +1615,9 @@ export type ConnectClientConfigType = Partial<
|
|
|
1603
1615
|
ClientDefaults &
|
|
1604
1616
|
RegionInputConfig &
|
|
1605
1617
|
EndpointInputConfig<EndpointParameters> &
|
|
1606
|
-
RetryInputConfig &
|
|
1607
1618
|
HostHeaderInputConfig &
|
|
1608
1619
|
UserAgentInputConfig &
|
|
1620
|
+
RetryInputConfig &
|
|
1609
1621
|
HttpAuthSchemeInputConfig &
|
|
1610
1622
|
ClientInputEndpointParameters;
|
|
1611
1623
|
export interface ConnectClientConfig extends ConnectClientConfigType {}
|
|
@@ -1615,9 +1627,9 @@ export type ConnectClientResolvedConfigType =
|
|
|
1615
1627
|
RuntimeExtensionsConfig &
|
|
1616
1628
|
RegionResolvedConfig &
|
|
1617
1629
|
EndpointResolvedConfig<EndpointParameters> &
|
|
1618
|
-
RetryResolvedConfig &
|
|
1619
1630
|
HostHeaderResolvedConfig &
|
|
1620
1631
|
UserAgentResolvedConfig &
|
|
1632
|
+
RetryResolvedConfig &
|
|
1621
1633
|
HttpAuthSchemeResolvedConfig &
|
|
1622
1634
|
ClientResolvedEndpointParameters;
|
|
1623
1635
|
export interface ConnectClientResolvedConfig
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import { DescribeContactEvaluationRequest } from "../models/
|
|
8
|
+
import { DescribeContactEvaluationRequest } from "../models/models_1";
|
|
9
9
|
import { DescribeContactEvaluationResponse } from "../models/models_2";
|
|
10
10
|
export { __MetadataBearer };
|
|
11
11
|
export { $Command };
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListTrafficDistributionGroupUsersRequest,
|
|
10
10
|
ListTrafficDistributionGroupUsersResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListTrafficDistributionGroupUsersCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListTrafficDistributionGroupsRequest,
|
|
10
10
|
ListTrafficDistributionGroupsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListTrafficDistributionGroupsCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import { ListUseCasesRequest, ListUseCasesResponse } from "../models/
|
|
8
|
+
import { ListUseCasesRequest, ListUseCasesResponse } from "../models/models_2";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ListUseCasesCommandInput extends ListUseCasesRequest {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectClient";
|
|
8
|
+
import {
|
|
9
|
+
SearchAgentStatusesRequest,
|
|
10
|
+
SearchAgentStatusesResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface SearchAgentStatusesCommandInput
|
|
15
|
+
extends SearchAgentStatusesRequest {}
|
|
16
|
+
export interface SearchAgentStatusesCommandOutput
|
|
17
|
+
extends SearchAgentStatusesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const SearchAgentStatusesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: SearchAgentStatusesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
SearchAgentStatusesCommandInput,
|
|
24
|
+
SearchAgentStatusesCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: SearchAgentStatusesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
SearchAgentStatusesCommandInput,
|
|
33
|
+
SearchAgentStatusesCommandOutput,
|
|
34
|
+
ConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class SearchAgentStatusesCommand extends SearchAgentStatusesCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectClient";
|
|
8
|
+
import {
|
|
9
|
+
SearchUserHierarchyGroupsRequest,
|
|
10
|
+
SearchUserHierarchyGroupsResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface SearchUserHierarchyGroupsCommandInput
|
|
15
|
+
extends SearchUserHierarchyGroupsRequest {}
|
|
16
|
+
export interface SearchUserHierarchyGroupsCommandOutput
|
|
17
|
+
extends SearchUserHierarchyGroupsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const SearchUserHierarchyGroupsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: SearchUserHierarchyGroupsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
SearchUserHierarchyGroupsCommandInput,
|
|
24
|
+
SearchUserHierarchyGroupsCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: SearchUserHierarchyGroupsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
SearchUserHierarchyGroupsCommandInput,
|
|
33
|
+
SearchUserHierarchyGroupsCommandOutput,
|
|
34
|
+
ConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class SearchUserHierarchyGroupsCommand extends SearchUserHierarchyGroupsCommand_base {}
|
|
@@ -171,6 +171,7 @@ export * from "./ReleasePhoneNumberCommand";
|
|
|
171
171
|
export * from "./ReplicateInstanceCommand";
|
|
172
172
|
export * from "./ResumeContactCommand";
|
|
173
173
|
export * from "./ResumeContactRecordingCommand";
|
|
174
|
+
export * from "./SearchAgentStatusesCommand";
|
|
174
175
|
export * from "./SearchAvailablePhoneNumbersCommand";
|
|
175
176
|
export * from "./SearchContactFlowModulesCommand";
|
|
176
177
|
export * from "./SearchContactFlowsCommand";
|
|
@@ -183,6 +184,7 @@ export * from "./SearchQuickConnectsCommand";
|
|
|
183
184
|
export * from "./SearchResourceTagsCommand";
|
|
184
185
|
export * from "./SearchRoutingProfilesCommand";
|
|
185
186
|
export * from "./SearchSecurityProfilesCommand";
|
|
187
|
+
export * from "./SearchUserHierarchyGroupsCommand";
|
|
186
188
|
export * from "./SearchUsersCommand";
|
|
187
189
|
export * from "./SearchVocabulariesCommand";
|
|
188
190
|
export * from "./SendChatIntegrationEventCommand";
|
|
@@ -207,6 +207,33 @@ export interface AgentStatusReference {
|
|
|
207
207
|
StatusArn?: string;
|
|
208
208
|
StatusName?: string;
|
|
209
209
|
}
|
|
210
|
+
export declare const StringComparisonType: {
|
|
211
|
+
readonly CONTAINS: "CONTAINS";
|
|
212
|
+
readonly EXACT: "EXACT";
|
|
213
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
214
|
+
};
|
|
215
|
+
export type StringComparisonType =
|
|
216
|
+
(typeof StringComparisonType)[keyof typeof StringComparisonType];
|
|
217
|
+
export interface StringCondition {
|
|
218
|
+
FieldName?: string;
|
|
219
|
+
Value?: string;
|
|
220
|
+
ComparisonType?: StringComparisonType;
|
|
221
|
+
}
|
|
222
|
+
export interface TagCondition {
|
|
223
|
+
TagKey?: string;
|
|
224
|
+
TagValue?: string;
|
|
225
|
+
}
|
|
226
|
+
export interface CommonAttributeAndCondition {
|
|
227
|
+
TagConditions?: TagCondition[];
|
|
228
|
+
}
|
|
229
|
+
export interface ControlPlaneAttributeFilter {
|
|
230
|
+
OrConditions?: CommonAttributeAndCondition[];
|
|
231
|
+
AndCondition?: CommonAttributeAndCondition;
|
|
232
|
+
TagCondition?: TagCondition;
|
|
233
|
+
}
|
|
234
|
+
export interface AgentStatusSearchFilter {
|
|
235
|
+
AttributeFilter?: ControlPlaneAttributeFilter;
|
|
236
|
+
}
|
|
210
237
|
export interface AgentStatusSummary {
|
|
211
238
|
Id?: string;
|
|
212
239
|
Arn?: string;
|
|
@@ -1767,66 +1794,6 @@ export interface AttributeCondition {
|
|
|
1767
1794
|
MatchCriteria?: MatchCriteria;
|
|
1768
1795
|
ComparisonOperator?: string;
|
|
1769
1796
|
}
|
|
1770
|
-
export declare const RoutingCriteriaStepStatus: {
|
|
1771
|
-
readonly ACTIVE: "ACTIVE";
|
|
1772
|
-
readonly EXPIRED: "EXPIRED";
|
|
1773
|
-
readonly INACTIVE: "INACTIVE";
|
|
1774
|
-
readonly JOINED: "JOINED";
|
|
1775
|
-
};
|
|
1776
|
-
export type RoutingCriteriaStepStatus =
|
|
1777
|
-
(typeof RoutingCriteriaStepStatus)[keyof typeof RoutingCriteriaStepStatus];
|
|
1778
|
-
export interface SegmentAttributeValue {
|
|
1779
|
-
ValueString?: string;
|
|
1780
|
-
}
|
|
1781
|
-
export interface WisdomInfo {
|
|
1782
|
-
SessionArn?: string;
|
|
1783
|
-
}
|
|
1784
|
-
export interface DescribeContactEvaluationRequest {
|
|
1785
|
-
InstanceId: string | undefined;
|
|
1786
|
-
EvaluationId: string | undefined;
|
|
1787
|
-
}
|
|
1788
|
-
export type EvaluationAnswerData =
|
|
1789
|
-
| EvaluationAnswerData.NotApplicableMember
|
|
1790
|
-
| EvaluationAnswerData.NumericValueMember
|
|
1791
|
-
| EvaluationAnswerData.StringValueMember
|
|
1792
|
-
| EvaluationAnswerData.$UnknownMember;
|
|
1793
|
-
export declare namespace EvaluationAnswerData {
|
|
1794
|
-
interface StringValueMember {
|
|
1795
|
-
StringValue: string;
|
|
1796
|
-
NumericValue?: never;
|
|
1797
|
-
NotApplicable?: never;
|
|
1798
|
-
$unknown?: never;
|
|
1799
|
-
}
|
|
1800
|
-
interface NumericValueMember {
|
|
1801
|
-
StringValue?: never;
|
|
1802
|
-
NumericValue: number;
|
|
1803
|
-
NotApplicable?: never;
|
|
1804
|
-
$unknown?: never;
|
|
1805
|
-
}
|
|
1806
|
-
interface NotApplicableMember {
|
|
1807
|
-
StringValue?: never;
|
|
1808
|
-
NumericValue?: never;
|
|
1809
|
-
NotApplicable: boolean;
|
|
1810
|
-
$unknown?: never;
|
|
1811
|
-
}
|
|
1812
|
-
interface $UnknownMember {
|
|
1813
|
-
StringValue?: never;
|
|
1814
|
-
NumericValue?: never;
|
|
1815
|
-
NotApplicable?: never;
|
|
1816
|
-
$unknown: [string, any];
|
|
1817
|
-
}
|
|
1818
|
-
interface Visitor<T> {
|
|
1819
|
-
StringValue: (value: string) => T;
|
|
1820
|
-
NumericValue: (value: number) => T;
|
|
1821
|
-
NotApplicable: (value: boolean) => T;
|
|
1822
|
-
_: (name: string, value: any) => T;
|
|
1823
|
-
}
|
|
1824
|
-
const visit: <T>(value: EvaluationAnswerData, visitor: Visitor<T>) => T;
|
|
1825
|
-
}
|
|
1826
|
-
export interface EvaluationAnswerOutput {
|
|
1827
|
-
Value?: EvaluationAnswerData;
|
|
1828
|
-
SystemSuggestedValue?: EvaluationAnswerData;
|
|
1829
|
-
}
|
|
1830
1797
|
export declare const CreateInstanceRequestFilterSensitiveLog: (
|
|
1831
1798
|
obj: CreateInstanceRequest
|
|
1832
1799
|
) => any;
|