@aws-sdk/client-connect 3.864.0 → 3.870.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/dist-cjs/index.js CHANGED
@@ -978,10 +978,6 @@ var StringComparisonType = {
978
978
  EXACT: "EXACT",
979
979
  STARTS_WITH: "STARTS_WITH"
980
980
  };
981
- var HierarchyGroupMatchType = {
982
- EXACT: "EXACT",
983
- WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS"
984
- };
985
981
  var MonitorCapability = {
986
982
  BARGE: "BARGE",
987
983
  SILENT_MONITOR: "SILENT_MONITOR"
@@ -2399,6 +2395,10 @@ var MaximumResultReturnedException = class _MaximumResultReturnedException exten
2399
2395
  this.Message = opts.Message;
2400
2396
  }
2401
2397
  };
2398
+ var HierarchyGroupMatchType = {
2399
+ EXACT: "EXACT",
2400
+ WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS"
2401
+ };
2402
2402
  var NumberComparisonType = {
2403
2403
  EQUAL: "EQUAL",
2404
2404
  GREATER: "GREATER",
@@ -11920,7 +11920,6 @@ var se_UserHierarchyGroupSearchConditionList = /* @__PURE__ */ __name((input, co
11920
11920
  var se_UserHierarchyGroupSearchCriteria = /* @__PURE__ */ __name((input, context) => {
11921
11921
  return (0, import_smithy_client.take)(input, {
11922
11922
  AndConditions: /* @__PURE__ */ __name((_) => se_UserHierarchyGroupSearchConditionList(_, context), "AndConditions"),
11923
- HierarchyGroupCondition: import_smithy_client._json,
11924
11923
  OrConditions: /* @__PURE__ */ __name((_) => se_UserHierarchyGroupSearchConditionList(_, context), "OrConditions"),
11925
11924
  StringCondition: import_smithy_client._json
11926
11925
  });
@@ -18615,7 +18614,6 @@ var paginateSearchVocabularies = (0, import_core.createPaginator)(ConnectClient,
18615
18614
  AgentStatusState,
18616
18615
  AgentStatusType,
18617
18616
  StringComparisonType,
18618
- HierarchyGroupMatchType,
18619
18617
  MonitorCapability,
18620
18618
  AttachedFileInvalidRequestExceptionReason,
18621
18619
  InvalidRequestExceptionReason,
@@ -18757,6 +18755,7 @@ var paginateSearchVocabularies = (0, import_core.createPaginator)(ConnectClient,
18757
18755
  DateComparisonType,
18758
18756
  SearchableQueueType,
18759
18757
  MaximumResultReturnedException,
18758
+ HierarchyGroupMatchType,
18760
18759
  NumberComparisonType,
18761
18760
  TargetListType,
18762
18761
  ChatEventType,
@@ -156,10 +156,6 @@ export const StringComparisonType = {
156
156
  EXACT: "EXACT",
157
157
  STARTS_WITH: "STARTS_WITH",
158
158
  };
159
- export const HierarchyGroupMatchType = {
160
- EXACT: "EXACT",
161
- WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS",
162
- };
163
159
  export const MonitorCapability = {
164
160
  BARGE: "BARGE",
165
161
  SILENT_MONITOR: "SILENT_MONITOR",
@@ -133,6 +133,10 @@ export class MaximumResultReturnedException extends __BaseException {
133
133
  this.Message = opts.Message;
134
134
  }
135
135
  }
136
+ export const HierarchyGroupMatchType = {
137
+ EXACT: "EXACT",
138
+ WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS",
139
+ };
136
140
  export const NumberComparisonType = {
137
141
  EQUAL: "EQUAL",
138
142
  GREATER: "GREATER",
@@ -8826,7 +8826,6 @@ const se_UserHierarchyGroupSearchConditionList = (input, context) => {
8826
8826
  const se_UserHierarchyGroupSearchCriteria = (input, context) => {
8827
8827
  return take(input, {
8828
8828
  AndConditions: (_) => se_UserHierarchyGroupSearchConditionList(_, context),
8829
- HierarchyGroupCondition: _json,
8830
8829
  OrConditions: (_) => se_UserHierarchyGroupSearchConditionList(_, context),
8831
8830
  StringCondition: _json,
8832
8831
  });
@@ -27,8 +27,9 @@ declare const CreateParticipantCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Adds a new participant into an on-going chat contact. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-customize-flow.html">Customize chat
31
- * flow experiences by integrating custom participants</a>.</p>
30
+ * <p>Adds a new participant into an on-going chat contact or webRTC call. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-customize-flow.html">Customize chat
31
+ * flow experiences by integrating custom participants</a>
32
+ * or <a href="https://docs.aws.amazon.com/connect/latest/adminguide/enable-multiuser-inapp.html">Enable multi-user web, in-app, and video calling</a>.</p>
32
33
  * @example
33
34
  * Use a bare-bones client and the command you need to make an API call.
34
35
  * ```javascript
@@ -42,6 +43,10 @@ declare const CreateParticipantCommand_base: {
42
43
  * ParticipantDetails: { // ParticipantDetailsToAdd
43
44
  * ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT" || "SUPERVISOR",
44
45
  * DisplayName: "STRING_VALUE",
46
+ * ParticipantCapabilities: { // ParticipantCapabilities
47
+ * Video: "SEND",
48
+ * ScreenShare: "SEND",
49
+ * },
45
50
  * },
46
51
  * };
47
52
  * const command = new CreateParticipantCommand(input);
@@ -62,6 +67,10 @@ declare const CreateParticipantCommand_base: {
62
67
  * @see {@link CreateParticipantCommandOutput} for command's `response` shape.
63
68
  * @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
64
69
  *
70
+ * @throws {@link ConflictException} (client fault)
71
+ * <p>Operation cannot be performed at this time as there is a conflict with another operation or
72
+ * contact state.</p>
73
+ *
65
74
  * @throws {@link InternalServiceException} (server fault)
66
75
  * <p>Request processing failed because of an error or failure with the service.</p>
67
76
  *
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import { DeleteIntegrationAssociationRequest } from "../models/models_1";
4
+ import { DeleteIntegrationAssociationRequest } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import { DeletePredefinedAttributeRequest } from "../models/models_1";
4
+ import { DeletePredefinedAttributeRequest } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -58,9 +58,6 @@ declare const GetCurrentMetricDataCommand_base: {
58
58
  * <p>If the response is slow due to large result sets, try these approaches:</p>
59
59
  * <ul>
60
60
  * <li>
61
- * <p>Narrow the time range of your request</p>
62
- * </li>
63
- * <li>
64
61
  * <p>Add filters to reduce the amount of data returned</p>
65
62
  * </li>
66
63
  * </ul>
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import { ListIntegrationAssociationsRequest, ListIntegrationAssociationsResponse } from "../models/models_2";
4
+ import { ListIntegrationAssociationsRequest } from "../models/models_1";
5
+ import { ListIntegrationAssociationsResponse } from "../models/models_2";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -49,10 +49,6 @@ declare const SearchAgentStatusesCommand_base: {
49
49
  * TagValue: "STRING_VALUE",
50
50
  * },
51
51
  * ],
52
- * HierarchyGroupCondition: { // HierarchyGroupCondition
53
- * Value: "STRING_VALUE",
54
- * HierarchyGroupMatchType: "EXACT" || "WITH_CHILD_GROUPS",
55
- * },
56
52
  * },
57
53
  * ],
58
54
  * AndCondition: {
@@ -62,10 +58,6 @@ declare const SearchAgentStatusesCommand_base: {
62
58
  * TagValue: "STRING_VALUE",
63
59
  * },
64
60
  * ],
65
- * HierarchyGroupCondition: {
66
- * Value: "STRING_VALUE",
67
- * HierarchyGroupMatchType: "EXACT" || "WITH_CHILD_GROUPS",
68
- * },
69
61
  * },
70
62
  * TagCondition: "<TagCondition>",
71
63
  * },
@@ -54,10 +54,6 @@ declare const SearchUserHierarchyGroupsCommand_base: {
54
54
  * TagValue: "STRING_VALUE",
55
55
  * },
56
56
  * ],
57
- * HierarchyGroupCondition: { // HierarchyGroupCondition
58
- * Value: "STRING_VALUE",
59
- * HierarchyGroupMatchType: "EXACT" || "WITH_CHILD_GROUPS",
60
- * },
61
57
  * },
62
58
  * ],
63
59
  * AndCondition: {
@@ -67,10 +63,6 @@ declare const SearchUserHierarchyGroupsCommand_base: {
67
63
  * TagValue: "STRING_VALUE",
68
64
  * },
69
65
  * ],
70
- * HierarchyGroupCondition: {
71
- * Value: "STRING_VALUE",
72
- * HierarchyGroupMatchType: "EXACT" || "WITH_CHILD_GROUPS",
73
- * },
74
66
  * },
75
67
  * TagCondition: "<TagCondition>",
76
68
  * },
@@ -89,10 +81,6 @@ declare const SearchUserHierarchyGroupsCommand_base: {
89
81
  * Value: "STRING_VALUE",
90
82
  * ComparisonType: "STARTS_WITH" || "CONTAINS" || "EXACT",
91
83
  * },
92
- * HierarchyGroupCondition: {
93
- * Value: "STRING_VALUE",
94
- * HierarchyGroupMatchType: "EXACT" || "WITH_CHILD_GROUPS",
95
- * },
96
84
  * },
97
85
  * ],
98
86
  * AndConditions: [
@@ -103,7 +91,6 @@ declare const SearchUserHierarchyGroupsCommand_base: {
103
91
  * Value: "STRING_VALUE",
104
92
  * ComparisonType: "STARTS_WITH" || "CONTAINS" || "EXACT",
105
93
  * },
106
- * HierarchyGroupCondition: "<HierarchyGroupCondition>",
107
94
  * },
108
95
  * };
109
96
  * const command = new SearchUserHierarchyGroupsCommand(input);
@@ -773,34 +773,6 @@ export interface StringCondition {
773
773
  */
774
774
  ComparisonType?: StringComparisonType | undefined;
775
775
  }
776
- /**
777
- * @public
778
- * @enum
779
- */
780
- export declare const HierarchyGroupMatchType: {
781
- readonly EXACT: "EXACT";
782
- readonly WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS";
783
- };
784
- /**
785
- * @public
786
- */
787
- export type HierarchyGroupMatchType = (typeof HierarchyGroupMatchType)[keyof typeof HierarchyGroupMatchType];
788
- /**
789
- * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
790
- * @public
791
- */
792
- export interface HierarchyGroupCondition {
793
- /**
794
- * <p>The value in the hierarchy group condition.</p>
795
- * @public
796
- */
797
- Value?: string | undefined;
798
- /**
799
- * <p>The type of hierarchy group match.</p>
800
- * @public
801
- */
802
- HierarchyGroupMatchType?: HierarchyGroupMatchType | undefined;
803
- }
804
776
  /**
805
777
  * <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
806
778
  * BPO = 123</code>. </p>
@@ -829,11 +801,6 @@ export interface CommonAttributeAndCondition {
829
801
  * @public
830
802
  */
831
803
  TagConditions?: TagCondition[] | undefined;
832
- /**
833
- * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
834
- * @public
835
- */
836
- HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
837
804
  }
838
805
  /**
839
806
  * <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
@@ -3830,6 +3797,13 @@ export interface ParticipantDetailsToAdd {
3830
3797
  * @public
3831
3798
  */
3832
3799
  DisplayName?: string | undefined;
3800
+ /**
3801
+ * <p>The configuration for the allowed video and screen sharing capabilities for participants
3802
+ * present over the call. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/inapp-calling.html">Set up in-app, web, video calling, and screen
3803
+ * sharing capabilities</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
3804
+ * @public
3805
+ */
3806
+ ParticipantCapabilities?: ParticipantCapabilities | undefined;
3833
3807
  }
3834
3808
  /**
3835
3809
  * @public
@@ -3841,7 +3815,9 @@ export interface CreateParticipantRequest {
3841
3815
  */
3842
3816
  InstanceId: string | undefined;
3843
3817
  /**
3844
- * <p>The identifier of the contact in this instance of Amazon Connect. Only contacts in the CHAT channel are supported.</p>
3818
+ * <p>The identifier of the contact in this instance of Amazon Connect. Supports contacts in the CHAT channel and VOICE (WebRTC) channels.
3819
+ * For WebRTC calls, this should be the initial contact ID that was generated when
3820
+ * the contact was first created (from the StartWebRTCContact API) in the VOICE channel</p>
3845
3821
  * @public
3846
3822
  */
3847
3823
  ContactId: string | undefined;
@@ -3856,9 +3832,8 @@ export interface CreateParticipantRequest {
3856
3832
  /**
3857
3833
  * <p>Information identifying the participant.</p>
3858
3834
  * <important>
3859
- * <p>The only Valid value for <code>ParticipantRole</code> is <code>CUSTOM_BOT</code>. </p>
3860
- * <p>
3861
- * <code>DisplayName</code> is <b>Required</b>.</p>
3835
+ * <p>The only valid value for <code>ParticipantRole</code> is <code>CUSTOM_BOT</code>
3836
+ * for chat contact and <code>CUSTOMER</code> for voice contact.</p>
3862
3837
  * </important>
3863
3838
  * @public
3864
3839
  */
@@ -6395,6 +6370,37 @@ export interface DeleteInstanceRequest {
6395
6370
  */
6396
6371
  ClientToken?: string | undefined;
6397
6372
  }
6373
+ /**
6374
+ * @public
6375
+ */
6376
+ export interface DeleteIntegrationAssociationRequest {
6377
+ /**
6378
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
6379
+ * @public
6380
+ */
6381
+ InstanceId: string | undefined;
6382
+ /**
6383
+ * <p>The identifier for the integration association.</p>
6384
+ * @public
6385
+ */
6386
+ IntegrationAssociationId: string | undefined;
6387
+ }
6388
+ /**
6389
+ * @public
6390
+ */
6391
+ export interface DeletePredefinedAttributeRequest {
6392
+ /**
6393
+ * <p> The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource
6394
+ * Name (ARN) of the instance.</p>
6395
+ * @public
6396
+ */
6397
+ InstanceId: string | undefined;
6398
+ /**
6399
+ * <p> The name of the predefined attribute.</p>
6400
+ * @public
6401
+ */
6402
+ Name: string | undefined;
6403
+ }
6398
6404
  /**
6399
6405
  * @internal
6400
6406
  */
@@ -1,37 +1,6 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
3
- import { AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentQualityMetrics, AgentsCriteria, AgentStatus, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, AudioQualityMetricsInfo, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactState, CreatedByInfo, DeviceInfo, DirectoryType, Distribution, EndpointType, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InstanceStorageConfig, InstanceStorageResourceType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, OutboundCallerConfig, OutboundEmailConfig, OverrideTimeSlice, ParticipantCapabilities, PredefinedAttributeValues, QueueReference, QuickConnectConfig, ReferenceStatus, ReferenceType, RoutingProfileQueueReference, RuleAction, RulePublishStatus, RuleTriggerEventSource, StorageType, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, View, VocabularyLanguageCode, VocabularyState } from "./models_0";
4
- /**
5
- * @public
6
- */
7
- export interface DeleteIntegrationAssociationRequest {
8
- /**
9
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
10
- * @public
11
- */
12
- InstanceId: string | undefined;
13
- /**
14
- * <p>The identifier for the integration association.</p>
15
- * @public
16
- */
17
- IntegrationAssociationId: string | undefined;
18
- }
19
- /**
20
- * @public
21
- */
22
- export interface DeletePredefinedAttributeRequest {
23
- /**
24
- * <p> The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource
25
- * Name (ARN) of the instance.</p>
26
- * @public
27
- */
28
- InstanceId: string | undefined;
29
- /**
30
- * <p> The name of the predefined attribute.</p>
31
- * @public
32
- */
33
- Name: string | undefined;
34
- }
3
+ import { AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentQualityMetrics, AgentsCriteria, AgentStatus, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, AudioQualityMetricsInfo, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactState, CreatedByInfo, DeviceInfo, DirectoryType, Distribution, EndpointType, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, OutboundCallerConfig, OutboundEmailConfig, OverrideTimeSlice, ParticipantCapabilities, PredefinedAttributeValues, QueueReference, QuickConnectConfig, ReferenceStatus, ReferenceType, RoutingProfileQueueReference, RuleAction, RulePublishStatus, RuleTriggerEventSource, SourceType, StorageType, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, View, VocabularyLanguageCode, VocabularyState } from "./models_0";
35
4
  /**
36
5
  * @public
37
6
  */
@@ -9239,6 +9208,83 @@ export interface ListInstanceStorageConfigsResponse {
9239
9208
  */
9240
9209
  NextToken?: string | undefined;
9241
9210
  }
9211
+ /**
9212
+ * @public
9213
+ */
9214
+ export interface ListIntegrationAssociationsRequest {
9215
+ /**
9216
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
9217
+ * @public
9218
+ */
9219
+ InstanceId: string | undefined;
9220
+ /**
9221
+ * <p>The integration type.</p>
9222
+ * @public
9223
+ */
9224
+ IntegrationType?: IntegrationType | undefined;
9225
+ /**
9226
+ * <p>The token for the next set of results. Use the value returned in the previous
9227
+ * response in the next request to retrieve the next set of results.</p>
9228
+ * @public
9229
+ */
9230
+ NextToken?: string | undefined;
9231
+ /**
9232
+ * <p>The maximum number of results to return per page.</p>
9233
+ * @public
9234
+ */
9235
+ MaxResults?: number | undefined;
9236
+ /**
9237
+ * <p>The Amazon Resource Name (ARN) of the integration.</p>
9238
+ * @public
9239
+ */
9240
+ IntegrationArn?: string | undefined;
9241
+ }
9242
+ /**
9243
+ * <p>Contains summary information about the associated AppIntegrations.</p>
9244
+ * @public
9245
+ */
9246
+ export interface IntegrationAssociationSummary {
9247
+ /**
9248
+ * <p>The identifier for the AppIntegration association.</p>
9249
+ * @public
9250
+ */
9251
+ IntegrationAssociationId?: string | undefined;
9252
+ /**
9253
+ * <p>The Amazon Resource Name (ARN) for the AppIntegration association.</p>
9254
+ * @public
9255
+ */
9256
+ IntegrationAssociationArn?: string | undefined;
9257
+ /**
9258
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
9259
+ * @public
9260
+ */
9261
+ InstanceId?: string | undefined;
9262
+ /**
9263
+ * <p>The integration type.</p>
9264
+ * @public
9265
+ */
9266
+ IntegrationType?: IntegrationType | undefined;
9267
+ /**
9268
+ * <p>The Amazon Resource Name (ARN) for the AppIntegration.</p>
9269
+ * @public
9270
+ */
9271
+ IntegrationArn?: string | undefined;
9272
+ /**
9273
+ * <p>The URL for the external application.</p>
9274
+ * @public
9275
+ */
9276
+ SourceApplicationUrl?: string | undefined;
9277
+ /**
9278
+ * <p>The user-provided, friendly name for the external application.</p>
9279
+ * @public
9280
+ */
9281
+ SourceApplicationName?: string | undefined;
9282
+ /**
9283
+ * <p>The name of the source.</p>
9284
+ * @public
9285
+ */
9286
+ SourceType?: SourceType | undefined;
9287
+ }
9242
9288
  /**
9243
9289
  * @internal
9244
9290
  */
@@ -1,84 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
3
- import { ActionSummary, AgentHierarchyGroups, AgentStatus, AgentStatusState, AllowedCapabilities, Application, Channel, ContactInitiationMethod, ControlPlaneAttributeFilter, CreatedByInfo, EventSourceName, FileStatusType, FileUseCaseType, HierarchyGroupCondition, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, MonitorCapability, ParticipantRole, QuickConnectType, Reference, RehydrationType, RulePublishStatus, SourceType, StringComparisonType, StringCondition, TagCondition, TaskTemplateStatus, UseCaseType, UserPhoneConfig, UserProficiency, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
4
- import { ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, EvaluationAnswerData, EvaluationNote, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, HoursOfOperationOverride, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QuickConnect, RoutingProfile, SortOrder, TrafficDistributionGroupStatus } from "./models_1";
5
- /**
6
- * @public
7
- */
8
- export interface ListIntegrationAssociationsRequest {
9
- /**
10
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
11
- * @public
12
- */
13
- InstanceId: string | undefined;
14
- /**
15
- * <p>The integration type.</p>
16
- * @public
17
- */
18
- IntegrationType?: IntegrationType | undefined;
19
- /**
20
- * <p>The token for the next set of results. Use the value returned in the previous
21
- * response in the next request to retrieve the next set of results.</p>
22
- * @public
23
- */
24
- NextToken?: string | undefined;
25
- /**
26
- * <p>The maximum number of results to return per page.</p>
27
- * @public
28
- */
29
- MaxResults?: number | undefined;
30
- /**
31
- * <p>The Amazon Resource Name (ARN) of the integration.</p>
32
- * @public
33
- */
34
- IntegrationArn?: string | undefined;
35
- }
36
- /**
37
- * <p>Contains summary information about the associated AppIntegrations.</p>
38
- * @public
39
- */
40
- export interface IntegrationAssociationSummary {
41
- /**
42
- * <p>The identifier for the AppIntegration association.</p>
43
- * @public
44
- */
45
- IntegrationAssociationId?: string | undefined;
46
- /**
47
- * <p>The Amazon Resource Name (ARN) for the AppIntegration association.</p>
48
- * @public
49
- */
50
- IntegrationAssociationArn?: string | undefined;
51
- /**
52
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
53
- * @public
54
- */
55
- InstanceId?: string | undefined;
56
- /**
57
- * <p>The integration type.</p>
58
- * @public
59
- */
60
- IntegrationType?: IntegrationType | undefined;
61
- /**
62
- * <p>The Amazon Resource Name (ARN) for the AppIntegration.</p>
63
- * @public
64
- */
65
- IntegrationArn?: string | undefined;
66
- /**
67
- * <p>The URL for the external application.</p>
68
- * @public
69
- */
70
- SourceApplicationUrl?: string | undefined;
71
- /**
72
- * <p>The user-provided, friendly name for the external application.</p>
73
- * @public
74
- */
75
- SourceApplicationName?: string | undefined;
76
- /**
77
- * <p>The name of the source.</p>
78
- * @public
79
- */
80
- SourceType?: SourceType | undefined;
81
- }
3
+ import { ActionSummary, AgentHierarchyGroups, AgentStatus, AgentStatusState, AllowedCapabilities, Application, Channel, ContactInitiationMethod, ControlPlaneAttributeFilter, CreatedByInfo, EventSourceName, FileStatusType, FileUseCaseType, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InstanceStorageConfig, InstanceStorageResourceType, LexBot, MonitorCapability, ParticipantRole, QuickConnectType, Reference, RehydrationType, RulePublishStatus, StringComparisonType, StringCondition, TagCondition, TaskTemplateStatus, UseCaseType, UserPhoneConfig, UserProficiency, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
4
+ import { ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, EvaluationAnswerData, EvaluationNote, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, HoursOfOperationOverride, InstanceAttributeType, IntegrationAssociationSummary, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QuickConnect, RoutingProfile, SortOrder, TrafficDistributionGroupStatus } from "./models_1";
82
5
  /**
83
6
  * @public
84
7
  */
@@ -4045,6 +3968,34 @@ export interface SearchUserHierarchyGroupsResponse {
4045
3968
  */
4046
3969
  ApproximateTotalCount?: number | undefined;
4047
3970
  }
3971
+ /**
3972
+ * @public
3973
+ * @enum
3974
+ */
3975
+ export declare const HierarchyGroupMatchType: {
3976
+ readonly EXACT: "EXACT";
3977
+ readonly WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS";
3978
+ };
3979
+ /**
3980
+ * @public
3981
+ */
3982
+ export type HierarchyGroupMatchType = (typeof HierarchyGroupMatchType)[keyof typeof HierarchyGroupMatchType];
3983
+ /**
3984
+ * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
3985
+ * @public
3986
+ */
3987
+ export interface HierarchyGroupCondition {
3988
+ /**
3989
+ * <p>The value in the hierarchy group condition.</p>
3990
+ * @public
3991
+ */
3992
+ Value?: string | undefined;
3993
+ /**
3994
+ * <p>The type of hierarchy group match.</p>
3995
+ * @public
3996
+ */
3997
+ HierarchyGroupMatchType?: HierarchyGroupMatchType | undefined;
3998
+ }
4048
3999
  /**
4049
4000
  * @public
4050
4001
  * @enum
@@ -1,6 +1,6 @@
1
- import { AdditionalEmailRecipients, AgentAvailabilityTimer, AgentConfig, AgentInfo, AgentStatusSearchFilter, Application, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, Endpoint, EvaluationFormQuestion, EvaluationFormScoringStrategy, HierarchyGroupCondition, InitiateAs, MediaConcurrency, OutboundCallerConfig, OutboundEmailConfig, PredefinedAttributeValues, QuickConnectConfig, Reference, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, StringCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus } from "./models_0";
1
+ import { AdditionalEmailRecipients, AgentAvailabilityTimer, AgentConfig, AgentInfo, AgentStatusSearchFilter, Application, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, Endpoint, EvaluationFormQuestion, EvaluationFormScoringStrategy, InitiateAs, MediaConcurrency, OutboundCallerConfig, OutboundEmailConfig, PredefinedAttributeValues, QuickConnectConfig, Reference, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, StringCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus } from "./models_0";
2
2
  import { AnsweringMachineDetectionStatus, AttributeCondition, ChatMetrics, ContactDetails, ContactEvaluation, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, EvaluationFormVersionStatus, Expiry, QualityMetrics, QueueInfo, QueueStatus, RecordingInfo, RoutingCriteriaStepStatus, SignInConfig, TelephonyConfig, WisdomInfo } from "./models_1";
3
- import { ChatMessage, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, DateCondition, EmailAddressInfo, EmailAddressSearchFilter, EmailAttachment, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, TimerEligibleParticipantRoles, UserHierarchyGroupSearchFilter, UserSearchFilter } from "./models_2";
3
+ import { ChatMessage, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, DateCondition, EmailAddressInfo, EmailAddressSearchFilter, EmailAttachment, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, TimerEligibleParticipantRoles, UserHierarchyGroupSearchFilter, UserSearchFilter } from "./models_2";
4
4
  /**
5
5
  * @public
6
6
  * @enum
@@ -2461,11 +2461,6 @@ export interface UserHierarchyGroupSearchCriteria {
2461
2461
  * @public
2462
2462
  */
2463
2463
  StringCondition?: StringCondition | undefined;
2464
- /**
2465
- * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
2466
- * @public
2467
- */
2468
- HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
2469
2464
  }
2470
2465
  /**
2471
2466
  * <p>The search criteria to be used to return users.</p>
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { DeleteIntegrationAssociationRequest } from "../models/models_1";
8
+ import { DeleteIntegrationAssociationRequest } from "../models/models_0";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface DeleteIntegrationAssociationCommandInput
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { DeletePredefinedAttributeRequest } from "../models/models_1";
8
+ import { DeletePredefinedAttributeRequest } from "../models/models_0";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface DeletePredefinedAttributeCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- ListIntegrationAssociationsRequest,
10
- ListIntegrationAssociationsResponse,
11
- } from "../models/models_2";
8
+ import { ListIntegrationAssociationsRequest } from "../models/models_1";
9
+ import { ListIntegrationAssociationsResponse } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ListIntegrationAssociationsCommandInput
@@ -256,23 +256,12 @@ export interface StringCondition {
256
256
  Value?: string | undefined;
257
257
  ComparisonType?: StringComparisonType | undefined;
258
258
  }
259
- export declare const HierarchyGroupMatchType: {
260
- readonly EXACT: "EXACT";
261
- readonly WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS";
262
- };
263
- export type HierarchyGroupMatchType =
264
- (typeof HierarchyGroupMatchType)[keyof typeof HierarchyGroupMatchType];
265
- export interface HierarchyGroupCondition {
266
- Value?: string | undefined;
267
- HierarchyGroupMatchType?: HierarchyGroupMatchType | undefined;
268
- }
269
259
  export interface TagCondition {
270
260
  TagKey?: string | undefined;
271
261
  TagValue?: string | undefined;
272
262
  }
273
263
  export interface CommonAttributeAndCondition {
274
264
  TagConditions?: TagCondition[] | undefined;
275
- HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
276
265
  }
277
266
  export interface ControlPlaneAttributeFilter {
278
267
  OrConditions?: CommonAttributeAndCondition[] | undefined;
@@ -1253,6 +1242,7 @@ export type ParticipantRole =
1253
1242
  export interface ParticipantDetailsToAdd {
1254
1243
  ParticipantRole?: ParticipantRole | undefined;
1255
1244
  DisplayName?: string | undefined;
1245
+ ParticipantCapabilities?: ParticipantCapabilities | undefined;
1256
1246
  }
1257
1247
  export interface CreateParticipantRequest {
1258
1248
  InstanceId: string | undefined;
@@ -1907,6 +1897,14 @@ export interface DeleteInstanceRequest {
1907
1897
  InstanceId: string | undefined;
1908
1898
  ClientToken?: string | undefined;
1909
1899
  }
1900
+ export interface DeleteIntegrationAssociationRequest {
1901
+ InstanceId: string | undefined;
1902
+ IntegrationAssociationId: string | undefined;
1903
+ }
1904
+ export interface DeletePredefinedAttributeRequest {
1905
+ InstanceId: string | undefined;
1906
+ Name: string | undefined;
1907
+ }
1910
1908
  export declare const CreateEmailAddressRequestFilterSensitiveLog: (
1911
1909
  obj: CreateEmailAddressRequest
1912
1910
  ) => any;
@@ -30,6 +30,7 @@ import {
30
30
  HoursOfOperationOverrideConfig,
31
31
  InstanceStorageConfig,
32
32
  InstanceStorageResourceType,
33
+ IntegrationType,
33
34
  LexBot,
34
35
  LexV2Bot,
35
36
  ListFlowAssociationResourceType,
@@ -47,6 +48,7 @@ import {
47
48
  RuleAction,
48
49
  RulePublishStatus,
49
50
  RuleTriggerEventSource,
51
+ SourceType,
50
52
  StorageType,
51
53
  TaskTemplateConstraints,
52
54
  TaskTemplateDefaults,
@@ -58,14 +60,6 @@ import {
58
60
  VocabularyLanguageCode,
59
61
  VocabularyState,
60
62
  } from "./models_0";
61
- export interface DeleteIntegrationAssociationRequest {
62
- InstanceId: string | undefined;
63
- IntegrationAssociationId: string | undefined;
64
- }
65
- export interface DeletePredefinedAttributeRequest {
66
- InstanceId: string | undefined;
67
- Name: string | undefined;
68
- }
69
63
  export interface DeletePromptRequest {
70
64
  InstanceId: string | undefined;
71
65
  PromptId: string | undefined;
@@ -2127,6 +2121,23 @@ export interface ListInstanceStorageConfigsResponse {
2127
2121
  StorageConfigs?: InstanceStorageConfig[] | undefined;
2128
2122
  NextToken?: string | undefined;
2129
2123
  }
2124
+ export interface ListIntegrationAssociationsRequest {
2125
+ InstanceId: string | undefined;
2126
+ IntegrationType?: IntegrationType | undefined;
2127
+ NextToken?: string | undefined;
2128
+ MaxResults?: number | undefined;
2129
+ IntegrationArn?: string | undefined;
2130
+ }
2131
+ export interface IntegrationAssociationSummary {
2132
+ IntegrationAssociationId?: string | undefined;
2133
+ IntegrationAssociationArn?: string | undefined;
2134
+ InstanceId?: string | undefined;
2135
+ IntegrationType?: IntegrationType | undefined;
2136
+ IntegrationArn?: string | undefined;
2137
+ SourceApplicationUrl?: string | undefined;
2138
+ SourceApplicationName?: string | undefined;
2139
+ SourceType?: SourceType | undefined;
2140
+ }
2130
2141
  export declare const DescribeEmailAddressResponseFilterSensitiveLog: (
2131
2142
  obj: DescribeEmailAddressResponse
2132
2143
  ) => any;
@@ -14,12 +14,10 @@ import {
14
14
  EventSourceName,
15
15
  FileStatusType,
16
16
  FileUseCaseType,
17
- HierarchyGroupCondition,
18
17
  HoursOfOperationConfig,
19
18
  HoursOfOperationOverrideConfig,
20
19
  InstanceStorageConfig,
21
20
  InstanceStorageResourceType,
22
- IntegrationType,
23
21
  LexBot,
24
22
  MonitorCapability,
25
23
  ParticipantRole,
@@ -27,7 +25,6 @@ import {
27
25
  Reference,
28
26
  RehydrationType,
29
27
  RulePublishStatus,
30
- SourceType,
31
28
  StringComparisonType,
32
29
  StringCondition,
33
30
  TagCondition,
@@ -52,6 +49,7 @@ import {
52
49
  HoursOfOperation,
53
50
  HoursOfOperationOverride,
54
51
  InstanceAttributeType,
52
+ IntegrationAssociationSummary,
55
53
  PhoneNumberCountryCode,
56
54
  PhoneNumberType,
57
55
  PredefinedAttribute,
@@ -62,23 +60,6 @@ import {
62
60
  SortOrder,
63
61
  TrafficDistributionGroupStatus,
64
62
  } from "./models_1";
65
- export interface ListIntegrationAssociationsRequest {
66
- InstanceId: string | undefined;
67
- IntegrationType?: IntegrationType | undefined;
68
- NextToken?: string | undefined;
69
- MaxResults?: number | undefined;
70
- IntegrationArn?: string | undefined;
71
- }
72
- export interface IntegrationAssociationSummary {
73
- IntegrationAssociationId?: string | undefined;
74
- IntegrationAssociationArn?: string | undefined;
75
- InstanceId?: string | undefined;
76
- IntegrationType?: IntegrationType | undefined;
77
- IntegrationArn?: string | undefined;
78
- SourceApplicationUrl?: string | undefined;
79
- SourceApplicationName?: string | undefined;
80
- SourceType?: SourceType | undefined;
81
- }
82
63
  export interface ListIntegrationAssociationsResponse {
83
64
  IntegrationAssociationSummaryList?:
84
65
  | IntegrationAssociationSummary[]
@@ -1107,6 +1088,16 @@ export interface SearchUserHierarchyGroupsResponse {
1107
1088
  NextToken?: string | undefined;
1108
1089
  ApproximateTotalCount?: number | undefined;
1109
1090
  }
1091
+ export declare const HierarchyGroupMatchType: {
1092
+ readonly EXACT: "EXACT";
1093
+ readonly WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS";
1094
+ };
1095
+ export type HierarchyGroupMatchType =
1096
+ (typeof HierarchyGroupMatchType)[keyof typeof HierarchyGroupMatchType];
1097
+ export interface HierarchyGroupCondition {
1098
+ Value?: string | undefined;
1099
+ HierarchyGroupMatchType?: HierarchyGroupMatchType | undefined;
1100
+ }
1110
1101
  export declare const NumberComparisonType: {
1111
1102
  readonly EQUAL: "EQUAL";
1112
1103
  readonly GREATER: "GREATER";
@@ -13,7 +13,6 @@ import {
13
13
  Endpoint,
14
14
  EvaluationFormQuestion,
15
15
  EvaluationFormScoringStrategy,
16
- HierarchyGroupCondition,
17
16
  InitiateAs,
18
17
  MediaConcurrency,
19
18
  OutboundCallerConfig,
@@ -70,6 +69,7 @@ import {
70
69
  EmailAddressInfo,
71
70
  EmailAddressSearchFilter,
72
71
  EmailAttachment,
72
+ HierarchyGroupCondition,
73
73
  HoursOfOperationSearchFilter,
74
74
  InboundAdditionalRecipients,
75
75
  InboundEmailContent,
@@ -625,7 +625,6 @@ export interface UserHierarchyGroupSearchCriteria {
625
625
  OrConditions?: UserHierarchyGroupSearchCriteria[] | undefined;
626
626
  AndConditions?: UserHierarchyGroupSearchCriteria[] | undefined;
627
627
  StringCondition?: StringCondition | undefined;
628
- HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
629
628
  }
630
629
  export interface UserSearchCriteria {
631
630
  OrConditions?: UserSearchCriteria[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect",
3
3
  "description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
4
- "version": "3.864.0",
4
+ "version": "3.870.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connect",