@aws-sdk/client-connect 3.1080.0 → 3.1081.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.
Files changed (52) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +119 -54
  3. package/dist-es/Connect.js +4 -0
  4. package/dist-es/commands/CreateAuthCodeCommand.js +4 -0
  5. package/dist-es/commands/DeleteSessionCommand.js +4 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +3 -0
  8. package/dist-es/schemas/schemas_0.js +97 -53
  9. package/dist-types/Connect.d.ts +14 -0
  10. package/dist-types/ConnectClient.d.ts +4 -2
  11. package/dist-types/commands/CreateAuthCodeCommand.d.ts +103 -0
  12. package/dist-types/commands/CreateUserHierarchyGroupCommand.d.ts +2 -1
  13. package/dist-types/commands/CreateViewCommand.d.ts +1 -2
  14. package/dist-types/commands/DeleteSessionCommand.d.ts +88 -0
  15. package/dist-types/commands/GetFederationTokenCommand.d.ts +5 -2
  16. package/dist-types/commands/GetMetricDataCommand.d.ts +1 -2
  17. package/dist-types/commands/SearchDataTablesCommand.d.ts +1 -2
  18. package/dist-types/commands/SearchQuickConnectsCommand.d.ts +2 -1
  19. package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +2 -1
  20. package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +2 -1
  21. package/dist-types/commands/SearchTestCasesCommand.d.ts +2 -1
  22. package/dist-types/commands/SearchUserHierarchyGroupsCommand.d.ts +2 -1
  23. package/dist-types/commands/index.d.ts +2 -0
  24. package/dist-types/models/enums.d.ts +11 -0
  25. package/dist-types/models/models_0.d.ts +80 -78
  26. package/dist-types/models/models_1.d.ts +106 -542
  27. package/dist-types/models/models_2.d.ts +535 -103
  28. package/dist-types/models/models_3.d.ts +105 -173
  29. package/dist-types/models/models_4.d.ts +171 -2
  30. package/dist-types/schemas/schemas_0.d.ts +7 -0
  31. package/dist-types/ts3.4/Connect.d.ts +34 -0
  32. package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
  33. package/dist-types/ts3.4/commands/CreateAuthCodeCommand.d.ts +43 -0
  34. package/dist-types/ts3.4/commands/CreateUserHierarchyGroupCommand.d.ts +2 -4
  35. package/dist-types/ts3.4/commands/CreateViewCommand.d.ts +1 -2
  36. package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +43 -0
  37. package/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/SearchDataTablesCommand.d.ts +4 -2
  39. package/dist-types/ts3.4/commands/SearchQuickConnectsCommand.d.ts +2 -4
  40. package/dist-types/ts3.4/commands/SearchRoutingProfilesCommand.d.ts +2 -4
  41. package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +2 -4
  42. package/dist-types/ts3.4/commands/SearchTestCasesCommand.d.ts +2 -4
  43. package/dist-types/ts3.4/commands/SearchUserHierarchyGroupsCommand.d.ts +2 -4
  44. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  45. package/dist-types/ts3.4/models/enums.d.ts +5 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +19 -18
  47. package/dist-types/ts3.4/models/models_1.d.ts +24 -33
  48. package/dist-types/ts3.4/models/models_2.d.ts +35 -23
  49. package/dist-types/ts3.4/models/models_3.d.ts +23 -38
  50. package/dist-types/ts3.4/models/models_4.d.ts +47 -4
  51. package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
  52. package/package.json +3 -3
@@ -1,8 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateUserHierarchyGroupRequest,
4
- CreateUserHierarchyGroupResponse,
5
- } from "../models/models_0";
2
+ import { CreateUserHierarchyGroupRequest } from "../models/models_0";
3
+ import { CreateUserHierarchyGroupResponse } from "../models/models_1";
6
4
  export { __MetadataBearer };
7
5
  export interface CreateUserHierarchyGroupCommandInput
8
6
  extends CreateUserHierarchyGroupRequest {}
@@ -1,6 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { CreateViewRequest } from "../models/models_0";
3
- import { CreateViewResponse } from "../models/models_1";
2
+ import { CreateViewRequest, CreateViewResponse } from "../models/models_1";
4
3
  export { __MetadataBearer };
5
4
  export interface CreateViewCommandInput extends CreateViewRequest {}
6
5
  export interface CreateViewCommandOutput
@@ -0,0 +1,43 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ DeleteSessionRequest,
4
+ DeleteSessionResponse,
5
+ } from "../models/models_1";
6
+ export { __MetadataBearer };
7
+ export interface DeleteSessionCommandInput extends DeleteSessionRequest {}
8
+ export interface DeleteSessionCommandOutput
9
+ extends DeleteSessionResponse,
10
+ __MetadataBearer {}
11
+ declare const DeleteSessionCommand_base: {
12
+ new (
13
+ input: DeleteSessionCommandInput
14
+ ): import("@smithy/core/client").CommandImpl<
15
+ DeleteSessionCommandInput,
16
+ DeleteSessionCommandOutput,
17
+ import("..").ConnectClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
20
+ >;
21
+ new (
22
+ input: DeleteSessionCommandInput
23
+ ): import("@smithy/core/client").CommandImpl<
24
+ DeleteSessionCommandInput,
25
+ DeleteSessionCommandOutput,
26
+ import("..").ConnectClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
29
+ >;
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
+ };
32
+ export declare class DeleteSessionCommand extends DeleteSessionCommand_base {
33
+ protected static __types: {
34
+ api: {
35
+ input: DeleteSessionRequest;
36
+ output: {};
37
+ };
38
+ sdk: {
39
+ input: DeleteSessionCommandInput;
40
+ output: DeleteSessionCommandOutput;
41
+ };
42
+ };
43
+ }
@@ -1,6 +1,8 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { GetMetricDataRequest } from "../models/models_1";
3
- import { GetMetricDataResponse } from "../models/models_2";
2
+ import {
3
+ GetMetricDataRequest,
4
+ GetMetricDataResponse,
5
+ } from "../models/models_2";
4
6
  export { __MetadataBearer };
5
7
  export interface GetMetricDataCommandInput extends GetMetricDataRequest {}
6
8
  export interface GetMetricDataCommandOutput
@@ -1,6 +1,8 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { SearchDataTablesResponse } from "../models/models_2";
3
- import { SearchDataTablesRequest } from "../models/models_3";
2
+ import {
3
+ SearchDataTablesRequest,
4
+ SearchDataTablesResponse,
5
+ } from "../models/models_3";
4
6
  export { __MetadataBearer };
5
7
  export interface SearchDataTablesCommandInput extends SearchDataTablesRequest {}
6
8
  export interface SearchDataTablesCommandOutput
@@ -1,8 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- SearchQuickConnectsRequest,
4
- SearchQuickConnectsResponse,
5
- } from "../models/models_3";
2
+ import { SearchQuickConnectsResponse } from "../models/models_3";
3
+ import { SearchQuickConnectsRequest } from "../models/models_4";
6
4
  export { __MetadataBearer };
7
5
  export interface SearchQuickConnectsCommandInput
8
6
  extends SearchQuickConnectsRequest {}
@@ -1,8 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- SearchRoutingProfilesRequest,
4
- SearchRoutingProfilesResponse,
5
- } from "../models/models_3";
2
+ import { SearchRoutingProfilesResponse } from "../models/models_3";
3
+ import { SearchRoutingProfilesRequest } from "../models/models_4";
6
4
  export { __MetadataBearer };
7
5
  export interface SearchRoutingProfilesCommandInput
8
6
  extends SearchRoutingProfilesRequest {}
@@ -1,8 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- SearchSecurityProfilesRequest,
4
- SearchSecurityProfilesResponse,
5
- } from "../models/models_3";
2
+ import { SearchSecurityProfilesResponse } from "../models/models_3";
3
+ import { SearchSecurityProfilesRequest } from "../models/models_4";
6
4
  export { __MetadataBearer };
7
5
  export interface SearchSecurityProfilesCommandInput
8
6
  extends SearchSecurityProfilesRequest {}
@@ -1,8 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- SearchTestCasesRequest,
4
- SearchTestCasesResponse,
5
- } from "../models/models_3";
2
+ import { SearchTestCasesResponse } from "../models/models_3";
3
+ import { SearchTestCasesRequest } from "../models/models_4";
6
4
  export { __MetadataBearer };
7
5
  export interface SearchTestCasesCommandInput extends SearchTestCasesRequest {}
8
6
  export interface SearchTestCasesCommandOutput
@@ -1,8 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- SearchUserHierarchyGroupsRequest,
4
- SearchUserHierarchyGroupsResponse,
5
- } from "../models/models_3";
2
+ import { SearchUserHierarchyGroupsResponse } from "../models/models_3";
3
+ import { SearchUserHierarchyGroupsRequest } from "../models/models_4";
6
4
  export { __MetadataBearer };
7
5
  export interface SearchUserHierarchyGroupsCommandInput
8
6
  extends SearchUserHierarchyGroupsRequest {}
@@ -32,6 +32,7 @@ export * from "./ClaimPhoneNumberCommand";
32
32
  export * from "./CompleteAttachedFileUploadCommand";
33
33
  export * from "./CreateAgentStatusCommand";
34
34
  export * from "./CreateAttachedFileCommand";
35
+ export * from "./CreateAuthCodeCommand";
35
36
  export * from "./CreateContactCommand";
36
37
  export * from "./CreateContactFlowCommand";
37
38
  export * from "./CreateContactFlowModuleAliasCommand";
@@ -93,6 +94,7 @@ export * from "./DeleteQuickConnectCommand";
93
94
  export * from "./DeleteRoutingProfileCommand";
94
95
  export * from "./DeleteRuleCommand";
95
96
  export * from "./DeleteSecurityProfileCommand";
97
+ export * from "./DeleteSessionCommand";
96
98
  export * from "./DeleteTaskTemplateCommand";
97
99
  export * from "./DeleteTestCaseCommand";
98
100
  export * from "./DeleteTrafficDistributionGroupCommand";
@@ -271,6 +271,11 @@ export declare const FailureReasonCode: {
271
271
  };
272
272
  export type FailureReasonCode =
273
273
  (typeof FailureReasonCode)[keyof typeof FailureReasonCode];
274
+ export declare const AuthCodeEntityType: {
275
+ readonly CUSTOMER_PROFILE: "CUSTOMER_PROFILE";
276
+ };
277
+ export type AuthCodeEntityType =
278
+ (typeof AuthCodeEntityType)[keyof typeof AuthCodeEntityType];
274
279
  export declare const InitiateAs: {
275
280
  readonly COMPLETED: "COMPLETED";
276
281
  readonly CONNECTED_TO_USER: "CONNECTED_TO_USER";
@@ -9,6 +9,7 @@ import {
9
9
  ApplicationType,
10
10
  AttachedFileInvalidRequestExceptionReason,
11
11
  AttachedFileServiceQuotaExceededExceptionReason,
12
+ AuthCodeEntityType,
12
13
  BehaviorType,
13
14
  Channel,
14
15
  ConfigurableNotificationPriority,
@@ -77,7 +78,6 @@ import {
77
78
  TestCaseStatus,
78
79
  UseCaseType,
79
80
  VideoCapability,
80
- ViewStatus,
81
81
  VocabularyLanguageCode,
82
82
  VoiceEnhancementMode,
83
83
  } from "./enums";
@@ -804,6 +804,24 @@ export interface CreateAttachedFileResponse {
804
804
  CreationTime?: string | undefined;
805
805
  FileStatus?: FileStatusType | undefined;
806
806
  }
807
+ export interface AuthScope {
808
+ SecurityProfileIds?: string[] | undefined;
809
+ EntityType: AuthCodeEntityType | undefined;
810
+ EntityId?: string | undefined;
811
+ DomainName?: string | undefined;
812
+ }
813
+ export interface CreateAuthCodeRequest {
814
+ InstanceId: string | undefined;
815
+ Scope: AuthScope | undefined;
816
+ MaxSessionDurationMinutes?: number | undefined;
817
+ SessionInactivityDurationMinutes: number | undefined;
818
+ }
819
+ export interface CreateAuthCodeResponse {
820
+ AuthCode?: string | undefined;
821
+ SessionId?: string | undefined;
822
+ EntityType?: AuthCodeEntityType | undefined;
823
+ EntityId?: string | undefined;
824
+ }
807
825
  export interface Reference {
808
826
  Value?: string | undefined;
809
827
  Type: ReferenceType | undefined;
@@ -1740,20 +1758,3 @@ export interface CreateUserHierarchyGroupRequest {
1740
1758
  InstanceId: string | undefined;
1741
1759
  Tags?: Record<string, string> | undefined;
1742
1760
  }
1743
- export interface CreateUserHierarchyGroupResponse {
1744
- HierarchyGroupId?: string | undefined;
1745
- HierarchyGroupArn?: string | undefined;
1746
- }
1747
- export interface ViewInputContent {
1748
- Template?: string | undefined;
1749
- Actions?: string[] | undefined;
1750
- }
1751
- export interface CreateViewRequest {
1752
- InstanceId: string | undefined;
1753
- ClientToken?: string | undefined;
1754
- Status: ViewStatus | undefined;
1755
- Content: ViewInputContent | undefined;
1756
- Description?: string | undefined;
1757
- Name: string | undefined;
1758
- Tags?: Record<string, string> | undefined;
1759
- }
@@ -3,7 +3,6 @@ import {
3
3
  AttachmentScope,
4
4
  AutoEvaluationStatus,
5
5
  Channel,
6
- Comparison,
7
6
  ContactFlowModuleState,
8
7
  ContactFlowModuleStatus,
9
8
  ContactFlowState,
@@ -30,7 +29,6 @@ import {
30
29
  FileUseCaseType,
31
30
  FlowAssociationResourceType,
32
31
  Grouping,
33
- HistoricalMetricName,
34
32
  InstanceAttributeType,
35
33
  InstanceReplicationStatus,
36
34
  InstanceStatus,
@@ -53,7 +51,6 @@ import {
53
51
  RecordingStatus,
54
52
  RulePublishStatus,
55
53
  SortOrder,
56
- Statistic,
57
54
  Status,
58
55
  StorageType,
59
56
  TestCaseStatus,
@@ -113,6 +110,23 @@ import {
113
110
  Validation,
114
111
  VoiceEnhancementConfig,
115
112
  } from "./models_0";
113
+ export interface CreateUserHierarchyGroupResponse {
114
+ HierarchyGroupId?: string | undefined;
115
+ HierarchyGroupArn?: string | undefined;
116
+ }
117
+ export interface ViewInputContent {
118
+ Template?: string | undefined;
119
+ Actions?: string[] | undefined;
120
+ }
121
+ export interface CreateViewRequest {
122
+ InstanceId: string | undefined;
123
+ ClientToken?: string | undefined;
124
+ Status: ViewStatus | undefined;
125
+ Content: ViewInputContent | undefined;
126
+ Description?: string | undefined;
127
+ Name: string | undefined;
128
+ Tags?: Record<string, string> | undefined;
129
+ }
116
130
  export interface ViewContent {
117
131
  InputSchema?: string | undefined;
118
132
  Template?: string | undefined;
@@ -359,6 +373,11 @@ export interface DeleteSecurityProfileRequest {
359
373
  InstanceId: string | undefined;
360
374
  SecurityProfileId: string | undefined;
361
375
  }
376
+ export interface DeleteSessionRequest {
377
+ InstanceId: string | undefined;
378
+ SessionId: string | undefined;
379
+ }
380
+ export interface DeleteSessionResponse {}
362
381
  export interface DeleteTaskTemplateRequest {
363
382
  InstanceId: string | undefined;
364
383
  TaskTemplateId: string | undefined;
@@ -1742,10 +1761,10 @@ export interface Credentials {
1742
1761
  RefreshTokenExpiration?: Date | undefined;
1743
1762
  }
1744
1763
  export interface GetFederationTokenResponse {
1764
+ UserId?: string | undefined;
1765
+ UserArn?: string | undefined;
1745
1766
  Credentials?: Credentials | undefined;
1746
1767
  SignInUrl?: string | undefined;
1747
- UserArn?: string | undefined;
1748
- UserId?: string | undefined;
1749
1768
  }
1750
1769
  export interface GetFlowAssociationRequest {
1751
1770
  InstanceId: string | undefined;
@@ -1757,31 +1776,3 @@ export interface GetFlowAssociationResponse {
1757
1776
  FlowId?: string | undefined;
1758
1777
  ResourceType?: FlowAssociationResourceType | undefined;
1759
1778
  }
1760
- export interface Threshold {
1761
- Comparison?: Comparison | undefined;
1762
- ThresholdValue?: number | undefined;
1763
- }
1764
- export interface HistoricalMetric {
1765
- Name?: HistoricalMetricName | undefined;
1766
- Threshold?: Threshold | undefined;
1767
- Statistic?: Statistic | undefined;
1768
- Unit?: Unit | undefined;
1769
- }
1770
- export interface GetMetricDataRequest {
1771
- InstanceId: string | undefined;
1772
- StartTime: Date | undefined;
1773
- EndTime: Date | undefined;
1774
- Filters: Filters | undefined;
1775
- Groupings?: Grouping[] | undefined;
1776
- HistoricalMetrics: HistoricalMetric[] | undefined;
1777
- NextToken?: string | undefined;
1778
- MaxResults?: number | undefined;
1779
- }
1780
- export interface HistoricalMetricData {
1781
- Metric?: HistoricalMetric | undefined;
1782
- Value?: number | undefined;
1783
- }
1784
- export interface HistoricalMetricResult {
1785
- Dimensions?: Dimensions | undefined;
1786
- Collections?: HistoricalMetricData[] | undefined;
1787
- }
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  AgentStatusType,
3
- AiUseCase,
4
3
  ArtifactStatus,
5
4
  AttachmentScope,
6
5
  AutoEvaluationStatus,
7
6
  BooleanComparisonType,
8
7
  Channel,
8
+ Comparison,
9
9
  ContactEvaluationAttributeComparisonType,
10
10
  ContactEvaluationAttributeKey,
11
11
  ContactFlowModuleState,
@@ -26,6 +26,8 @@ import {
26
26
  EventSourceName,
27
27
  ExecutionRecordStatus,
28
28
  FilterV2StringConditionComparisonOperator,
29
+ Grouping,
30
+ HistoricalMetricName,
29
31
  InstanceStatus,
30
32
  InstanceStorageResourceType,
31
33
  IntegrationType,
@@ -61,10 +63,12 @@ import {
61
63
  SortableFieldName,
62
64
  SortOrder,
63
65
  SourceType,
66
+ Statistic,
64
67
  TaskTemplateStatus,
65
68
  TestCaseExecutionStatus,
66
69
  TestCaseStatus,
67
70
  TrafficDistributionGroupStatus,
71
+ Unit,
68
72
  UseCaseType,
69
73
  ViewStatus,
70
74
  ViewType,
@@ -99,17 +103,45 @@ import {
99
103
  Attribute,
100
104
  ContactFlow,
101
105
  ContactFlowModule,
102
- DataTable,
103
106
  DataTableAttribute,
107
+ Dimensions,
104
108
  EvaluationContactParticipant,
105
109
  EvaluationScore,
106
110
  ExtensionConfiguration,
111
+ Filters,
107
112
  HierarchyGroupSummary,
108
- HistoricalMetricResult,
109
113
  HoursOfOperationOverride,
110
114
  HoursOfOperationsIdentifier,
111
115
  Notification,
112
116
  } from "./models_1";
117
+ export interface Threshold {
118
+ Comparison?: Comparison | undefined;
119
+ ThresholdValue?: number | undefined;
120
+ }
121
+ export interface HistoricalMetric {
122
+ Name?: HistoricalMetricName | undefined;
123
+ Threshold?: Threshold | undefined;
124
+ Statistic?: Statistic | undefined;
125
+ Unit?: Unit | undefined;
126
+ }
127
+ export interface GetMetricDataRequest {
128
+ InstanceId: string | undefined;
129
+ StartTime: Date | undefined;
130
+ EndTime: Date | undefined;
131
+ Filters: Filters | undefined;
132
+ Groupings?: Grouping[] | undefined;
133
+ HistoricalMetrics: HistoricalMetric[] | undefined;
134
+ NextToken?: string | undefined;
135
+ MaxResults?: number | undefined;
136
+ }
137
+ export interface HistoricalMetricData {
138
+ Metric?: HistoricalMetric | undefined;
139
+ Value?: number | undefined;
140
+ }
141
+ export interface HistoricalMetricResult {
142
+ Dimensions?: Dimensions | undefined;
143
+ Collections?: HistoricalMetricData[] | undefined;
144
+ }
113
145
  export interface GetMetricDataResponse {
114
146
  NextToken?: string | undefined;
115
147
  MetricResults?: HistoricalMetricResult[] | undefined;
@@ -2000,23 +2032,3 @@ export interface ContactSearchSummaryAgentInfo {
2000
2032
  Id?: string | undefined;
2001
2033
  ConnectedToAgentTimestamp?: Date | undefined;
2002
2034
  }
2003
- export interface ContactSearchSummaryAiAgentInfo {
2004
- AiAgentVersionId?: string | undefined;
2005
- AiAgentEscalated?: boolean | undefined;
2006
- AiUseCase?: AiUseCase | undefined;
2007
- }
2008
- export interface ContactSearchSummaryQueueInfo {
2009
- Id?: string | undefined;
2010
- EnqueueTimestamp?: Date | undefined;
2011
- }
2012
- export interface DataTableSearchFilter {
2013
- AttributeFilter?: ControlPlaneAttributeFilter | undefined;
2014
- }
2015
- export interface SearchDataTablesResponse {
2016
- DataTables?: DataTable[] | undefined;
2017
- NextToken?: string | undefined;
2018
- ApproximateTotalCount?: number | undefined;
2019
- }
2020
- export interface EmailAddressSearchFilter {
2021
- TagFilter?: ControlPlaneTagFilter | undefined;
2022
- }
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  AgentAvailabilityTimer,
3
3
  AgentStatusState,
4
+ AiUseCase,
4
5
  AnalyticsMode,
5
6
  AttachmentScope,
6
7
  Behavior,
@@ -103,11 +104,11 @@ import {
103
104
  UserPhoneConfig,
104
105
  UserProficiency,
105
106
  Validation,
106
- ViewInputContent,
107
107
  VoiceEnhancementConfig,
108
108
  } from "./models_0";
109
109
  import {
110
110
  AttributeCondition,
111
+ DataTable,
111
112
  EvaluationAnswerData,
112
113
  EvaluationNote,
113
114
  ExtensionConfiguration,
@@ -121,6 +122,7 @@ import {
121
122
  RoutingProfile,
122
123
  TestCase,
123
124
  View,
125
+ ViewInputContent,
124
126
  WorkspaceTheme,
125
127
  } from "./models_1";
126
128
  import {
@@ -128,15 +130,33 @@ import {
128
130
  ContactFlowModuleSearchFilter,
129
131
  ContactFlowSearchFilter,
130
132
  ControlPlaneTagFilter,
131
- DataTableSearchFilter,
132
133
  DateTimeCondition,
133
134
  DecimalCondition,
134
- EmailAddressSearchFilter,
135
135
  EvaluationSearchFilter,
136
136
  NumberCondition,
137
137
  SignInConfig,
138
138
  TelephonyConfig,
139
139
  } from "./models_2";
140
+ export interface ContactSearchSummaryAiAgentInfo {
141
+ AiAgentVersionId?: string | undefined;
142
+ AiAgentEscalated?: boolean | undefined;
143
+ AiUseCase?: AiUseCase | undefined;
144
+ }
145
+ export interface ContactSearchSummaryQueueInfo {
146
+ Id?: string | undefined;
147
+ EnqueueTimestamp?: Date | undefined;
148
+ }
149
+ export interface DataTableSearchFilter {
150
+ AttributeFilter?: ControlPlaneAttributeFilter | undefined;
151
+ }
152
+ export interface SearchDataTablesResponse {
153
+ DataTables?: DataTable[] | undefined;
154
+ NextToken?: string | undefined;
155
+ ApproximateTotalCount?: number | undefined;
156
+ }
157
+ export interface EmailAddressSearchFilter {
158
+ TagFilter?: ControlPlaneTagFilter | undefined;
159
+ }
140
160
  export interface EmailAddressMetadata {
141
161
  EmailAddressId?: string | undefined;
142
162
  EmailAddressArn?: string | undefined;
@@ -1715,38 +1735,3 @@ export interface SearchQueuesRequest {
1715
1735
  SearchFilter?: QueueSearchFilter | undefined;
1716
1736
  SearchCriteria?: QueueSearchCriteria | undefined;
1717
1737
  }
1718
- export interface SearchQuickConnectsRequest {
1719
- InstanceId: string | undefined;
1720
- NextToken?: string | undefined;
1721
- MaxResults?: number | undefined;
1722
- SearchFilter?: QuickConnectSearchFilter | undefined;
1723
- SearchCriteria?: QuickConnectSearchCriteria | undefined;
1724
- }
1725
- export interface SearchRoutingProfilesRequest {
1726
- InstanceId: string | undefined;
1727
- NextToken?: string | undefined;
1728
- MaxResults?: number | undefined;
1729
- SearchFilter?: RoutingProfileSearchFilter | undefined;
1730
- SearchCriteria?: RoutingProfileSearchCriteria | undefined;
1731
- }
1732
- export interface SearchSecurityProfilesRequest {
1733
- InstanceId: string | undefined;
1734
- NextToken?: string | undefined;
1735
- MaxResults?: number | undefined;
1736
- SearchCriteria?: SecurityProfileSearchCriteria | undefined;
1737
- SearchFilter?: SecurityProfilesSearchFilter | undefined;
1738
- }
1739
- export interface SearchTestCasesRequest {
1740
- InstanceId: string | undefined;
1741
- NextToken?: string | undefined;
1742
- MaxResults?: number | undefined;
1743
- SearchFilter?: TestCaseSearchFilter | undefined;
1744
- SearchCriteria?: TestCaseSearchCriteria | undefined;
1745
- }
1746
- export interface SearchUserHierarchyGroupsRequest {
1747
- InstanceId: string | undefined;
1748
- NextToken?: string | undefined;
1749
- MaxResults?: number | undefined;
1750
- SearchFilter?: UserHierarchyGroupSearchFilter | undefined;
1751
- SearchCriteria?: UserHierarchyGroupSearchCriteria | undefined;
1752
- }
@@ -41,13 +41,11 @@ import {
41
41
  TaskTemplateInfoV2,
42
42
  WisdomInfo,
43
43
  } from "./models_1";
44
+ import { ContactSearchSummaryAgentInfo } from "./models_2";
44
45
  import {
45
- ContactSearchSummaryAgentInfo,
46
+ ChatMessage,
46
47
  ContactSearchSummaryAiAgentInfo,
47
48
  ContactSearchSummaryQueueInfo,
48
- } from "./models_2";
49
- import {
50
- ChatMessage,
51
49
  EmailAddressInfo,
52
50
  EmailAttachment,
53
51
  EvaluationFormQuestion,
@@ -58,10 +56,20 @@ import {
58
56
  ParticipantDetails,
59
57
  PersistentChat,
60
58
  QueueInfoInput,
59
+ QuickConnectSearchCriteria,
60
+ QuickConnectSearchFilter,
61
61
  RoutingCriteriaInputStep,
62
+ RoutingProfileSearchCriteria,
63
+ RoutingProfileSearchFilter,
64
+ SecurityProfileSearchCriteria,
65
+ SecurityProfilesSearchFilter,
62
66
  SegmentAttributeValue,
63
67
  TaskAttachment,
64
68
  TemplatedMessageConfig,
69
+ TestCaseSearchCriteria,
70
+ TestCaseSearchFilter,
71
+ UserHierarchyGroupSearchCriteria,
72
+ UserHierarchyGroupSearchFilter,
65
73
  UserSearchCriteria,
66
74
  UserSearchFilter,
67
75
  ViewSearchCriteria,
@@ -71,6 +79,41 @@ import {
71
79
  WorkspaceSearchCriteria,
72
80
  WorkspaceSearchFilter,
73
81
  } from "./models_3";
82
+ export interface SearchQuickConnectsRequest {
83
+ InstanceId: string | undefined;
84
+ NextToken?: string | undefined;
85
+ MaxResults?: number | undefined;
86
+ SearchFilter?: QuickConnectSearchFilter | undefined;
87
+ SearchCriteria?: QuickConnectSearchCriteria | undefined;
88
+ }
89
+ export interface SearchRoutingProfilesRequest {
90
+ InstanceId: string | undefined;
91
+ NextToken?: string | undefined;
92
+ MaxResults?: number | undefined;
93
+ SearchFilter?: RoutingProfileSearchFilter | undefined;
94
+ SearchCriteria?: RoutingProfileSearchCriteria | undefined;
95
+ }
96
+ export interface SearchSecurityProfilesRequest {
97
+ InstanceId: string | undefined;
98
+ NextToken?: string | undefined;
99
+ MaxResults?: number | undefined;
100
+ SearchCriteria?: SecurityProfileSearchCriteria | undefined;
101
+ SearchFilter?: SecurityProfilesSearchFilter | undefined;
102
+ }
103
+ export interface SearchTestCasesRequest {
104
+ InstanceId: string | undefined;
105
+ NextToken?: string | undefined;
106
+ MaxResults?: number | undefined;
107
+ SearchFilter?: TestCaseSearchFilter | undefined;
108
+ SearchCriteria?: TestCaseSearchCriteria | undefined;
109
+ }
110
+ export interface SearchUserHierarchyGroupsRequest {
111
+ InstanceId: string | undefined;
112
+ NextToken?: string | undefined;
113
+ MaxResults?: number | undefined;
114
+ SearchFilter?: UserHierarchyGroupSearchFilter | undefined;
115
+ SearchCriteria?: UserHierarchyGroupSearchCriteria | undefined;
116
+ }
74
117
  export interface SearchUsersRequest {
75
118
  InstanceId: string | undefined;
76
119
  NextToken?: string | undefined;
@@ -111,6 +111,7 @@ export declare var AudioFeatures$: StaticStructureSchema;
111
111
  export declare var AudioQualityMetricsInfo$: StaticStructureSchema;
112
112
  export declare var AuthenticationProfile$: StaticStructureSchema;
113
113
  export declare var AuthenticationProfileSummary$: StaticStructureSchema;
114
+ export declare var AuthScope$: StaticStructureSchema;
114
115
  export declare var AutoAcceptConfig$: StaticStructureSchema;
115
116
  export declare var AutoEvaluationConfiguration$: StaticStructureSchema;
116
117
  export declare var AutoEvaluationDetails$: StaticStructureSchema;
@@ -201,6 +202,8 @@ export declare var CreateAgentStatusRequest$: StaticStructureSchema;
201
202
  export declare var CreateAgentStatusResponse$: StaticStructureSchema;
202
203
  export declare var CreateAttachedFileRequest$: StaticStructureSchema;
203
204
  export declare var CreateAttachedFileResponse$: StaticStructureSchema;
205
+ export declare var CreateAuthCodeRequest$: StaticStructureSchema;
206
+ export declare var CreateAuthCodeResponse$: StaticStructureSchema;
204
207
  export declare var CreateCaseActionDefinition$: StaticStructureSchema;
205
208
  export declare var CreateContactFlowModuleAliasRequest$: StaticStructureSchema;
206
209
  export declare var CreateContactFlowModuleAliasResponse$: StaticStructureSchema;
@@ -337,6 +340,8 @@ export declare var DeleteQuickConnectRequest$: StaticStructureSchema;
337
340
  export declare var DeleteRoutingProfileRequest$: StaticStructureSchema;
338
341
  export declare var DeleteRuleRequest$: StaticStructureSchema;
339
342
  export declare var DeleteSecurityProfileRequest$: StaticStructureSchema;
343
+ export declare var DeleteSessionRequest$: StaticStructureSchema;
344
+ export declare var DeleteSessionResponse$: StaticStructureSchema;
340
345
  export declare var DeleteTaskTemplateRequest$: StaticStructureSchema;
341
346
  export declare var DeleteTaskTemplateResponse$: StaticStructureSchema;
342
347
  export declare var DeleteTestCaseRequest$: StaticStructureSchema;
@@ -1296,6 +1301,7 @@ export declare var ClaimPhoneNumber$: StaticOperationSchema;
1296
1301
  export declare var CompleteAttachedFileUpload$: StaticOperationSchema;
1297
1302
  export declare var CreateAgentStatus$: StaticOperationSchema;
1298
1303
  export declare var CreateAttachedFile$: StaticOperationSchema;
1304
+ export declare var CreateAuthCode$: StaticOperationSchema;
1299
1305
  export declare var CreateContact$: StaticOperationSchema;
1300
1306
  export declare var CreateContactFlow$: StaticOperationSchema;
1301
1307
  export declare var CreateContactFlowModule$: StaticOperationSchema;
@@ -1357,6 +1363,7 @@ export declare var DeleteQuickConnect$: StaticOperationSchema;
1357
1363
  export declare var DeleteRoutingProfile$: StaticOperationSchema;
1358
1364
  export declare var DeleteRule$: StaticOperationSchema;
1359
1365
  export declare var DeleteSecurityProfile$: StaticOperationSchema;
1366
+ export declare var DeleteSession$: StaticOperationSchema;
1360
1367
  export declare var DeleteTaskTemplate$: StaticOperationSchema;
1361
1368
  export declare var DeleteTestCase$: StaticOperationSchema;
1362
1369
  export declare var DeleteTrafficDistributionGroup$: StaticOperationSchema;