@aws-sdk/client-connect 3.714.0 → 3.715.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 (43) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +65 -1
  3. package/dist-es/Connect.js +2 -0
  4. package/dist-es/commands/StartChatContactCommand.js +2 -1
  5. package/dist-es/commands/UpdateParticipantAuthenticationCommand.js +23 -0
  6. package/dist-es/commands/index.js +1 -0
  7. package/dist-es/models/models_0.js +1 -0
  8. package/dist-es/models/models_1.js +1 -0
  9. package/dist-es/models/models_2.js +6 -0
  10. package/dist-es/models/models_3.js +4 -0
  11. package/dist-es/protocols/Aws_restJson1.js +29 -0
  12. package/dist-types/Connect.d.ts +7 -0
  13. package/dist-types/ConnectClient.d.ts +3 -2
  14. package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
  15. package/dist-types/commands/CreatePushNotificationRegistrationCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeContactCommand.d.ts +1 -0
  17. package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +2 -2
  18. package/dist-types/commands/ListBotsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListInstanceAttributesCommand.d.ts +1 -1
  20. package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +2 -2
  21. package/dist-types/commands/StartChatContactCommand.d.ts +1 -0
  22. package/dist-types/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
  23. package/dist-types/commands/UpdateParticipantAuthenticationCommand.d.ts +109 -0
  24. package/dist-types/commands/UpdateSecurityProfileCommand.d.ts +1 -1
  25. package/dist-types/commands/UpdateTaskTemplateCommand.d.ts +1 -2
  26. package/dist-types/commands/index.d.ts +1 -0
  27. package/dist-types/models/models_0.d.ts +1 -0
  28. package/dist-types/models/models_1.d.ts +1 -0
  29. package/dist-types/models/models_2.d.ts +48 -112
  30. package/dist-types/models/models_3.d.ts +129 -1
  31. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  32. package/dist-types/ts3.4/Connect.d.ts +17 -0
  33. package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
  34. package/dist-types/ts3.4/commands/UpdateParticipantAuthenticationCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/UpdateSecurityProfileCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/UpdateTaskTemplateCommand.d.ts +4 -2
  37. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  39. package/dist-types/ts3.4/models/models_1.d.ts +1 -0
  40. package/dist-types/ts3.4/models/models_2.d.ts +11 -26
  41. package/dist-types/ts3.4/models/models_3.d.ts +29 -0
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  43. package/package.json +1 -1
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { UpdateTaskTemplateRequest } from "../models/models_2";
9
- import { UpdateTaskTemplateResponse } from "../models/models_3";
8
+ import {
9
+ UpdateTaskTemplateRequest,
10
+ UpdateTaskTemplateResponse,
11
+ } from "../models/models_3";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface UpdateTaskTemplateCommandInput
@@ -245,6 +245,7 @@ export * from "./UpdateHoursOfOperationCommand";
245
245
  export * from "./UpdateHoursOfOperationOverrideCommand";
246
246
  export * from "./UpdateInstanceAttributeCommand";
247
247
  export * from "./UpdateInstanceStorageConfigCommand";
248
+ export * from "./UpdateParticipantAuthenticationCommand";
248
249
  export * from "./UpdateParticipantRoleConfigCommand";
249
250
  export * from "./UpdatePhoneNumberCommand";
250
251
  export * from "./UpdatePhoneNumberMetadataCommand";
@@ -1169,6 +1169,7 @@ export declare const IntegrationType: {
1169
1169
  readonly APPLICATION: "APPLICATION";
1170
1170
  readonly CALL_TRANSFER_CONNECTOR: "CALL_TRANSFER_CONNECTOR";
1171
1171
  readonly CASES_DOMAIN: "CASES_DOMAIN";
1172
+ readonly COGNITO_USER_POOL: "COGNITO_USER_POOL";
1172
1173
  readonly EVENT: "EVENT";
1173
1174
  readonly FILE_SCANNER: "FILE_SCANNER";
1174
1175
  readonly PINPOINT_APP: "PINPOINT_APP";
@@ -472,6 +472,7 @@ export declare const InstanceAttributeType: {
472
472
  readonly ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING";
473
473
  readonly HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND";
474
474
  readonly INBOUND_CALLS: "INBOUND_CALLS";
475
+ readonly MULTI_PARTY_CHAT_CONFERENCE: "MULTI_PARTY_CHAT_CONFERENCE";
475
476
  readonly MULTI_PARTY_CONFERENCE: "MULTI_PARTY_CONFERENCE";
476
477
  readonly OUTBOUND_CALLS: "OUTBOUND_CALLS";
477
478
  readonly USE_CUSTOM_TTS_VOICES: "USE_CUSTOM_TTS_VOICES";
@@ -34,9 +34,6 @@ import {
34
34
  StringComparisonType,
35
35
  StringCondition,
36
36
  TagCondition,
37
- TaskTemplateConstraints,
38
- TaskTemplateDefaults,
39
- TaskTemplateField,
40
37
  TaskTemplateStatus,
41
38
  UseCaseType,
42
39
  UserPhoneConfig,
@@ -1568,6 +1565,14 @@ export interface UpdateInstanceStorageConfigRequest {
1568
1565
  ResourceType: InstanceStorageResourceType | undefined;
1569
1566
  StorageConfig: InstanceStorageConfig | undefined;
1570
1567
  }
1568
+ export interface UpdateParticipantAuthenticationRequest {
1569
+ State: string | undefined;
1570
+ InstanceId: string | undefined;
1571
+ Code?: string | undefined;
1572
+ Error?: string | undefined;
1573
+ ErrorDescription?: string | undefined;
1574
+ }
1575
+ export interface UpdateParticipantAuthenticationResponse {}
1571
1576
  export declare const TimerEligibleParticipantRoles: {
1572
1577
  readonly AGENT: "AGENT";
1573
1578
  readonly CUSTOMER: "CUSTOMER";
@@ -1754,29 +1759,6 @@ export interface UpdateRuleRequest {
1754
1759
  Actions: RuleAction[] | undefined;
1755
1760
  PublishStatus: RulePublishStatus | undefined;
1756
1761
  }
1757
- export interface UpdateSecurityProfileRequest {
1758
- Description?: string | undefined;
1759
- Permissions?: string[] | undefined;
1760
- SecurityProfileId: string | undefined;
1761
- InstanceId: string | undefined;
1762
- AllowedAccessControlTags?: Record<string, string> | undefined;
1763
- TagRestrictedResources?: string[] | undefined;
1764
- Applications?: Application[] | undefined;
1765
- HierarchyRestrictedResources?: string[] | undefined;
1766
- AllowedAccessControlHierarchyGroupId?: string | undefined;
1767
- }
1768
- export interface UpdateTaskTemplateRequest {
1769
- TaskTemplateId: string | undefined;
1770
- InstanceId: string | undefined;
1771
- Name?: string | undefined;
1772
- Description?: string | undefined;
1773
- ContactFlowId?: string | undefined;
1774
- SelfAssignFlowId?: string | undefined;
1775
- Constraints?: TaskTemplateConstraints | undefined;
1776
- Defaults?: TaskTemplateDefaults | undefined;
1777
- Status?: TaskTemplateStatus | undefined;
1778
- Fields?: TaskTemplateField[] | undefined;
1779
- }
1780
1762
  export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
1781
1763
  export declare const ListViewsResponseFilterSensitiveLog: (
1782
1764
  obj: ListViewsResponse
@@ -1873,3 +1855,6 @@ export declare const StartWebRTCContactResponseFilterSensitiveLog: (
1873
1855
  export declare const UpdateEmailAddressMetadataRequestFilterSensitiveLog: (
1874
1856
  obj: UpdateEmailAddressMetadataRequest
1875
1857
  ) => any;
1858
+ export declare const UpdateParticipantAuthenticationRequestFilterSensitiveLog: (
1859
+ obj: UpdateParticipantAuthenticationRequest
1860
+ ) => any;
@@ -3,6 +3,7 @@ import {
3
3
  AgentConfig,
4
4
  AgentInfo,
5
5
  AgentStatusSearchFilter,
6
+ Application,
6
7
  Campaign,
7
8
  Channel,
8
9
  ContactFlowStatus,
@@ -72,6 +73,29 @@ import {
72
73
  UserHierarchyGroupSearchFilter,
73
74
  UserSearchFilter,
74
75
  } from "./models_2";
76
+ export interface UpdateSecurityProfileRequest {
77
+ Description?: string | undefined;
78
+ Permissions?: string[] | undefined;
79
+ SecurityProfileId: string | undefined;
80
+ InstanceId: string | undefined;
81
+ AllowedAccessControlTags?: Record<string, string> | undefined;
82
+ TagRestrictedResources?: string[] | undefined;
83
+ Applications?: Application[] | undefined;
84
+ HierarchyRestrictedResources?: string[] | undefined;
85
+ AllowedAccessControlHierarchyGroupId?: string | undefined;
86
+ }
87
+ export interface UpdateTaskTemplateRequest {
88
+ TaskTemplateId: string | undefined;
89
+ InstanceId: string | undefined;
90
+ Name?: string | undefined;
91
+ Description?: string | undefined;
92
+ ContactFlowId?: string | undefined;
93
+ SelfAssignFlowId?: string | undefined;
94
+ Constraints?: TaskTemplateConstraints | undefined;
95
+ Defaults?: TaskTemplateDefaults | undefined;
96
+ Status?: TaskTemplateStatus | undefined;
97
+ Fields?: TaskTemplateField[] | undefined;
98
+ }
75
99
  export interface UpdateTaskTemplateResponse {
76
100
  InstanceId?: string | undefined;
77
101
  Id?: string | undefined;
@@ -330,6 +354,7 @@ export interface StartChatContactRequest {
330
354
  PersistentChat?: PersistentChat | undefined;
331
355
  RelatedContactId?: string | undefined;
332
356
  SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
357
+ CustomerId?: string | undefined;
333
358
  }
334
359
  export interface StartEmailContactRequest {
335
360
  InstanceId: string | undefined;
@@ -561,6 +586,7 @@ export interface Contact {
561
586
  ScheduledTimestamp?: Date | undefined;
562
587
  RelatedContactId?: string | undefined;
563
588
  WisdomInfo?: WisdomInfo | undefined;
589
+ CustomerId?: string | undefined;
564
590
  CustomerEndpoint?: EndpointInfo | undefined;
565
591
  SystemEndpoint?: EndpointInfo | undefined;
566
592
  QueueTimeAdjustmentSeconds?: number | undefined;
@@ -595,6 +621,9 @@ export declare const UpdateViewMetadataRequestFilterSensitiveLog: (
595
621
  export declare const CreateContactRequestFilterSensitiveLog: (
596
622
  obj: CreateContactRequest
597
623
  ) => any;
624
+ export declare const StartChatContactRequestFilterSensitiveLog: (
625
+ obj: StartChatContactRequest
626
+ ) => any;
598
627
  export declare const StartEmailContactRequestFilterSensitiveLog: (
599
628
  obj: StartEmailContactRequest
600
629
  ) => any;
@@ -991,6 +991,10 @@ import {
991
991
  UpdateInstanceStorageConfigCommandInput,
992
992
  UpdateInstanceStorageConfigCommandOutput,
993
993
  } from "../commands/UpdateInstanceStorageConfigCommand";
994
+ import {
995
+ UpdateParticipantAuthenticationCommandInput,
996
+ UpdateParticipantAuthenticationCommandOutput,
997
+ } from "../commands/UpdateParticipantAuthenticationCommand";
994
998
  import {
995
999
  UpdateParticipantRoleConfigCommandInput,
996
1000
  UpdateParticipantRoleConfigCommandOutput,
@@ -2107,6 +2111,10 @@ export declare const se_UpdateInstanceStorageConfigCommand: (
2107
2111
  input: UpdateInstanceStorageConfigCommandInput,
2108
2112
  context: __SerdeContext
2109
2113
  ) => Promise<__HttpRequest>;
2114
+ export declare const se_UpdateParticipantAuthenticationCommand: (
2115
+ input: UpdateParticipantAuthenticationCommandInput,
2116
+ context: __SerdeContext
2117
+ ) => Promise<__HttpRequest>;
2110
2118
  export declare const se_UpdateParticipantRoleConfigCommand: (
2111
2119
  input: UpdateParticipantRoleConfigCommandInput,
2112
2120
  context: __SerdeContext
@@ -3223,6 +3231,10 @@ export declare const de_UpdateInstanceStorageConfigCommand: (
3223
3231
  output: __HttpResponse,
3224
3232
  context: __SerdeContext
3225
3233
  ) => Promise<UpdateInstanceStorageConfigCommandOutput>;
3234
+ export declare const de_UpdateParticipantAuthenticationCommand: (
3235
+ output: __HttpResponse,
3236
+ context: __SerdeContext
3237
+ ) => Promise<UpdateParticipantAuthenticationCommandOutput>;
3226
3238
  export declare const de_UpdateParticipantRoleConfigCommand: (
3227
3239
  output: __HttpResponse,
3228
3240
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect",
3
3
  "description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
4
- "version": "3.714.0",
4
+ "version": "3.715.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",