@aws-sdk/client-connect 3.883.0 → 3.885.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 (35) hide show
  1. package/dist-cjs/index.js +41 -8
  2. package/dist-es/commands/SearchContactsCommand.js +2 -2
  3. package/dist-es/commands/UpdateParticipantAuthenticationCommand.js +1 -1
  4. package/dist-es/models/models_2.js +8 -6
  5. package/dist-es/models/models_3.js +6 -0
  6. package/dist-es/protocols/Aws_restJson1.js +25 -0
  7. package/dist-types/commands/CreateContactCommand.d.ts +8 -0
  8. package/dist-types/commands/CreatePredefinedAttributeCommand.d.ts +29 -4
  9. package/dist-types/commands/DeleteIntegrationAssociationCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeContactCommand.d.ts +8 -0
  11. package/dist-types/commands/DescribePredefinedAttributeCommand.d.ts +25 -4
  12. package/dist-types/commands/ListInstanceStorageConfigsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +1 -2
  14. package/dist-types/commands/ListPredefinedAttributesCommand.d.ts +18 -4
  15. package/dist-types/commands/SearchPredefinedAttributesCommand.d.ts +25 -4
  16. package/dist-types/commands/StartChatContactCommand.d.ts +8 -0
  17. package/dist-types/commands/StartEmailContactCommand.d.ts +8 -0
  18. package/dist-types/commands/StartOutboundChatContactCommand.d.ts +8 -0
  19. package/dist-types/commands/StartTaskContactCommand.d.ts +8 -0
  20. package/dist-types/commands/UpdateContactCommand.d.ts +8 -0
  21. package/dist-types/commands/UpdateParticipantAuthenticationCommand.d.ts +1 -1
  22. package/dist-types/commands/UpdatePredefinedAttributeCommand.d.ts +29 -4
  23. package/dist-types/models/models_0.d.ts +27 -16
  24. package/dist-types/models/models_1.d.ts +48 -47
  25. package/dist-types/models/models_2.d.ts +54 -45
  26. package/dist-types/models/models_3.d.ts +892 -823
  27. package/dist-types/ts3.4/commands/DeleteIntegrationAssociationCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/ListInstanceStorageConfigsCommand.d.ts +2 -4
  29. package/dist-types/ts3.4/commands/ListIntegrationAssociationsCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/commands/UpdateParticipantAuthenticationCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +6 -5
  32. package/dist-types/ts3.4/models/models_1.d.ts +10 -12
  33. package/dist-types/ts3.4/models/models_2.d.ts +17 -11
  34. package/dist-types/ts3.4/models/models_3.d.ts +107 -91
  35. package/package.json +1 -1
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { DeleteIntegrationAssociationRequest } from "../models/models_0";
8
+ import { DeleteIntegrationAssociationRequest } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface DeleteIntegrationAssociationCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- ListInstanceStorageConfigsRequest,
10
- ListInstanceStorageConfigsResponse,
11
- } from "../models/models_1";
8
+ import { ListInstanceStorageConfigsRequest } from "../models/models_1";
9
+ import { ListInstanceStorageConfigsResponse } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ListInstanceStorageConfigsCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { ListIntegrationAssociationsRequest } from "../models/models_1";
9
- import { ListIntegrationAssociationsResponse } from "../models/models_2";
8
+ import {
9
+ ListIntegrationAssociationsRequest,
10
+ ListIntegrationAssociationsResponse,
11
+ } from "../models/models_2";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface ListIntegrationAssociationsCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateParticipantAuthenticationRequest,
10
10
  UpdateParticipantAuthenticationResponse,
11
- } from "../models/models_2";
11
+ } from "../models/models_3";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateParticipantAuthenticationCommandInput
@@ -1278,6 +1278,9 @@ export interface CreatePersistentContactAssociationRequest {
1278
1278
  export interface CreatePersistentContactAssociationResponse {
1279
1279
  ContinuedFromContactId?: string | undefined;
1280
1280
  }
1281
+ export interface InputPredefinedAttributeConfiguration {
1282
+ EnableValueValidationOnAssociation?: boolean | undefined;
1283
+ }
1281
1284
  export type PredefinedAttributeValues =
1282
1285
  | PredefinedAttributeValues.StringListMember
1283
1286
  | PredefinedAttributeValues.$UnknownMember;
@@ -1299,7 +1302,9 @@ export declare namespace PredefinedAttributeValues {
1299
1302
  export interface CreatePredefinedAttributeRequest {
1300
1303
  InstanceId: string | undefined;
1301
1304
  Name: string | undefined;
1302
- Values: PredefinedAttributeValues | undefined;
1305
+ Values?: PredefinedAttributeValues | undefined;
1306
+ Purposes?: string[] | undefined;
1307
+ AttributeConfiguration?: InputPredefinedAttributeConfiguration | undefined;
1303
1308
  }
1304
1309
  export interface CreatePromptRequest {
1305
1310
  InstanceId: string | undefined;
@@ -1901,10 +1906,6 @@ export interface DeleteInstanceRequest {
1901
1906
  InstanceId: string | undefined;
1902
1907
  ClientToken?: string | undefined;
1903
1908
  }
1904
- export interface DeleteIntegrationAssociationRequest {
1905
- InstanceId: string | undefined;
1906
- IntegrationAssociationId: string | undefined;
1907
- }
1908
1909
  export declare const CreateEmailAddressRequestFilterSensitiveLog: (
1909
1910
  obj: CreateEmailAddressRequest
1910
1911
  ) => any;
@@ -31,7 +31,6 @@ import {
31
31
  HoursOfOperationOverrideConfig,
32
32
  InstanceStorageConfig,
33
33
  InstanceStorageResourceType,
34
- IntegrationType,
35
34
  LexBot,
36
35
  LexV2Bot,
37
36
  ListFlowAssociationResourceType,
@@ -60,6 +59,10 @@ import {
60
59
  VocabularyLanguageCode,
61
60
  VocabularyState,
62
61
  } from "./models_0";
62
+ export interface DeleteIntegrationAssociationRequest {
63
+ InstanceId: string | undefined;
64
+ IntegrationAssociationId: string | undefined;
65
+ }
63
66
  export interface DeletePredefinedAttributeRequest {
64
67
  InstanceId: string | undefined;
65
68
  Name: string | undefined;
@@ -901,9 +904,15 @@ export interface DescribePredefinedAttributeRequest {
901
904
  InstanceId: string | undefined;
902
905
  Name: string | undefined;
903
906
  }
907
+ export interface PredefinedAttributeConfiguration {
908
+ EnableValueValidationOnAssociation?: boolean | undefined;
909
+ IsReadOnly?: boolean | undefined;
910
+ }
904
911
  export interface PredefinedAttribute {
905
912
  Name?: string | undefined;
906
913
  Values?: PredefinedAttributeValues | undefined;
914
+ Purposes?: string[] | undefined;
915
+ AttributeConfiguration?: PredefinedAttributeConfiguration | undefined;
907
916
  LastModifiedTime?: Date | undefined;
908
917
  LastModifiedRegion?: string | undefined;
909
918
  }
@@ -2124,17 +2133,6 @@ export interface ListInstanceStorageConfigsRequest {
2124
2133
  NextToken?: string | undefined;
2125
2134
  MaxResults?: number | undefined;
2126
2135
  }
2127
- export interface ListInstanceStorageConfigsResponse {
2128
- StorageConfigs?: InstanceStorageConfig[] | undefined;
2129
- NextToken?: string | undefined;
2130
- }
2131
- export interface ListIntegrationAssociationsRequest {
2132
- InstanceId: string | undefined;
2133
- IntegrationType?: IntegrationType | undefined;
2134
- NextToken?: string | undefined;
2135
- MaxResults?: number | undefined;
2136
- IntegrationArn?: string | undefined;
2137
- }
2138
2136
  export declare const DescribeEmailAddressResponseFilterSensitiveLog: (
2139
2137
  obj: DescribeEmailAddressResponse
2140
2138
  ) => any;
@@ -61,6 +61,17 @@ import {
61
61
  SortOrder,
62
62
  TrafficDistributionGroupStatus,
63
63
  } from "./models_1";
64
+ export interface ListInstanceStorageConfigsResponse {
65
+ StorageConfigs?: InstanceStorageConfig[] | undefined;
66
+ NextToken?: string | undefined;
67
+ }
68
+ export interface ListIntegrationAssociationsRequest {
69
+ InstanceId: string | undefined;
70
+ IntegrationType?: IntegrationType | undefined;
71
+ NextToken?: string | undefined;
72
+ MaxResults?: number | undefined;
73
+ IntegrationArn?: string | undefined;
74
+ }
64
75
  export interface IntegrationAssociationSummary {
65
76
  IntegrationAssociationId?: string | undefined;
66
77
  IntegrationAssociationArn?: string | undefined;
@@ -1735,14 +1746,6 @@ export interface UpdateInstanceStorageConfigRequest {
1735
1746
  StorageConfig: InstanceStorageConfig | undefined;
1736
1747
  ClientToken?: string | undefined;
1737
1748
  }
1738
- export interface UpdateParticipantAuthenticationRequest {
1739
- State: string | undefined;
1740
- InstanceId: string | undefined;
1741
- Code?: string | undefined;
1742
- Error?: string | undefined;
1743
- ErrorDescription?: string | undefined;
1744
- }
1745
- export interface UpdateParticipantAuthenticationResponse {}
1746
1749
  export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
1747
1750
  export declare const ListViewsResponseFilterSensitiveLog: (
1748
1751
  obj: ListViewsResponse
@@ -1781,6 +1784,12 @@ export declare const SearchCriteriaFilterSensitiveLog: (
1781
1784
  export declare const SearchContactsRequestFilterSensitiveLog: (
1782
1785
  obj: SearchContactsRequest
1783
1786
  ) => any;
1787
+ export declare const ContactSearchSummaryFilterSensitiveLog: (
1788
+ obj: ContactSearchSummary
1789
+ ) => any;
1790
+ export declare const SearchContactsResponseFilterSensitiveLog: (
1791
+ obj: SearchContactsResponse
1792
+ ) => any;
1784
1793
  export declare const EmailAddressMetadataFilterSensitiveLog: (
1785
1794
  obj: EmailAddressMetadata
1786
1795
  ) => any;
@@ -1839,6 +1848,3 @@ export declare const StartWebRTCContactResponseFilterSensitiveLog: (
1839
1848
  export declare const UpdateEmailAddressMetadataRequestFilterSensitiveLog: (
1840
1849
  obj: UpdateEmailAddressMetadataRequest
1841
1850
  ) => any;
1842
- export declare const UpdateParticipantAuthenticationRequestFilterSensitiveLog: (
1843
- obj: UpdateParticipantAuthenticationRequest
1844
- ) => any;
@@ -14,6 +14,7 @@ import {
14
14
  EvaluationFormQuestion,
15
15
  EvaluationFormScoringStrategy,
16
16
  InitiateAs,
17
+ InputPredefinedAttributeConfiguration,
17
18
  MediaConcurrency,
18
19
  OutboundCallerConfig,
19
20
  OutboundEmailConfig,
@@ -87,6 +88,14 @@ import {
87
88
  UserHierarchyGroupSearchFilter,
88
89
  UserSearchFilter,
89
90
  } from "./models_2";
91
+ export interface UpdateParticipantAuthenticationRequest {
92
+ State: string | undefined;
93
+ InstanceId: string | undefined;
94
+ Code?: string | undefined;
95
+ Error?: string | undefined;
96
+ ErrorDescription?: string | undefined;
97
+ }
98
+ export interface UpdateParticipantAuthenticationResponse {}
90
99
  export declare const TimerEligibleParticipantRoles: {
91
100
  readonly AGENT: "AGENT";
92
101
  readonly CUSTOMER: "CUSTOMER";
@@ -185,6 +194,8 @@ export interface UpdatePredefinedAttributeRequest {
185
194
  InstanceId: string | undefined;
186
195
  Name: string | undefined;
187
196
  Values?: PredefinedAttributeValues | undefined;
197
+ Purposes?: string[] | undefined;
198
+ AttributeConfiguration?: InputPredefinedAttributeConfiguration | undefined;
188
199
  }
189
200
  export interface UpdatePromptRequest {
190
201
  InstanceId: string | undefined;
@@ -383,11 +394,6 @@ export interface UpdateViewMetadataRequest {
383
394
  Description?: string | undefined;
384
395
  }
385
396
  export interface UpdateViewMetadataResponse {}
386
- export interface SegmentAttributeValue {
387
- ValueString?: string | undefined;
388
- ValueMap?: Record<string, SegmentAttributeValue> | undefined;
389
- ValueInteger?: number | undefined;
390
- }
391
397
  export type EvaluationFormItem =
392
398
  | EvaluationFormItem.QuestionMember
393
399
  | EvaluationFormItem.SectionMember
@@ -442,22 +448,6 @@ export interface ContactFlowSearchCriteria {
442
448
  StateCondition?: ContactFlowState | undefined;
443
449
  StatusCondition?: ContactFlowStatus | undefined;
444
450
  }
445
- export interface CreateContactRequest {
446
- InstanceId: string | undefined;
447
- ClientToken?: string | undefined;
448
- RelatedContactId?: string | undefined;
449
- Attributes?: Record<string, string> | undefined;
450
- References?: Record<string, Reference> | undefined;
451
- Channel: Channel | undefined;
452
- InitiationMethod: ContactInitiationMethod | undefined;
453
- ExpiryDurationInMinutes?: number | undefined;
454
- UserInfo?: UserInfo | undefined;
455
- InitiateAs?: InitiateAs | undefined;
456
- Name?: string | undefined;
457
- Description?: string | undefined;
458
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
459
- PreviousContactId?: string | undefined;
460
- }
461
451
  export interface CreateEvaluationFormRequest {
462
452
  InstanceId: string | undefined;
463
453
  Title: string | undefined;
@@ -544,76 +534,12 @@ export interface SecurityProfileSearchCriteria {
544
534
  AndConditions?: SecurityProfileSearchCriteria[] | undefined;
545
535
  StringCondition?: StringCondition | undefined;
546
536
  }
547
- export interface StartChatContactRequest {
548
- InstanceId: string | undefined;
549
- ContactFlowId: string | undefined;
550
- Attributes?: Record<string, string> | undefined;
551
- ParticipantDetails: ParticipantDetails | undefined;
552
- InitialMessage?: ChatMessage | undefined;
553
- ClientToken?: string | undefined;
554
- ChatDurationInMinutes?: number | undefined;
555
- SupportedMessagingContentTypes?: string[] | undefined;
556
- PersistentChat?: PersistentChat | undefined;
557
- RelatedContactId?: string | undefined;
558
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
559
- CustomerId?: string | undefined;
560
- }
561
- export interface StartEmailContactRequest {
562
- InstanceId: string | undefined;
563
- FromEmailAddress: EmailAddressInfo | undefined;
564
- DestinationEmailAddress: string | undefined;
565
- Description?: string | undefined;
566
- References?: Record<string, Reference> | undefined;
567
- Name?: string | undefined;
568
- EmailMessage: InboundEmailContent | undefined;
569
- AdditionalRecipients?: InboundAdditionalRecipients | undefined;
570
- Attachments?: EmailAttachment[] | undefined;
571
- ContactFlowId?: string | undefined;
572
- RelatedContactId?: string | undefined;
573
- Attributes?: Record<string, string> | undefined;
574
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
575
- ClientToken?: string | undefined;
576
- }
577
- export interface StartOutboundChatContactRequest {
578
- SourceEndpoint: Endpoint | undefined;
579
- DestinationEndpoint: Endpoint | undefined;
580
- InstanceId: string | undefined;
581
- SegmentAttributes: Record<string, SegmentAttributeValue> | undefined;
582
- Attributes?: Record<string, string> | undefined;
583
- ContactFlowId: string | undefined;
584
- ChatDurationInMinutes?: number | undefined;
585
- ParticipantDetails?: ParticipantDetails | undefined;
586
- InitialSystemMessage?: ChatMessage | undefined;
587
- RelatedContactId?: string | undefined;
588
- SupportedMessagingContentTypes?: string[] | undefined;
589
- ClientToken?: string | undefined;
590
- }
591
- export interface StartTaskContactRequest {
592
- InstanceId: string | undefined;
593
- PreviousContactId?: string | undefined;
594
- ContactFlowId?: string | undefined;
595
- Attributes?: Record<string, string> | undefined;
596
- Name: string | undefined;
597
- References?: Record<string, Reference> | undefined;
598
- Description?: string | undefined;
599
- ClientToken?: string | undefined;
600
- ScheduledTime?: Date | undefined;
601
- TaskTemplateId?: string | undefined;
602
- QuickConnectId?: string | undefined;
603
- RelatedContactId?: string | undefined;
604
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
605
- }
606
- export interface UpdateContactRequest {
607
- InstanceId: string | undefined;
608
- ContactId: string | undefined;
609
- Name?: string | undefined;
610
- Description?: string | undefined;
611
- References?: Record<string, Reference> | undefined;
612
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
613
- QueueInfo?: QueueInfoInput | undefined;
614
- UserInfo?: UserInfo | undefined;
615
- CustomerEndpoint?: Endpoint | undefined;
616
- SystemEndpoint?: Endpoint | undefined;
537
+ export interface SegmentAttributeValue {
538
+ ValueString?: string | undefined;
539
+ ValueMap?: Record<string, SegmentAttributeValue> | undefined;
540
+ ValueInteger?: number | undefined;
541
+ ValueList?: SegmentAttributeValue[] | undefined;
542
+ ValueArn?: string | undefined;
617
543
  }
618
544
  export interface UpdateEvaluationFormRequest {
619
545
  InstanceId: string | undefined;
@@ -751,6 +677,93 @@ export interface Step {
751
677
  Expression?: Expression | undefined;
752
678
  Status?: RoutingCriteriaStepStatus | undefined;
753
679
  }
680
+ export interface CreateContactRequest {
681
+ InstanceId: string | undefined;
682
+ ClientToken?: string | undefined;
683
+ RelatedContactId?: string | undefined;
684
+ Attributes?: Record<string, string> | undefined;
685
+ References?: Record<string, Reference> | undefined;
686
+ Channel: Channel | undefined;
687
+ InitiationMethod: ContactInitiationMethod | undefined;
688
+ ExpiryDurationInMinutes?: number | undefined;
689
+ UserInfo?: UserInfo | undefined;
690
+ InitiateAs?: InitiateAs | undefined;
691
+ Name?: string | undefined;
692
+ Description?: string | undefined;
693
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
694
+ PreviousContactId?: string | undefined;
695
+ }
696
+ export interface StartChatContactRequest {
697
+ InstanceId: string | undefined;
698
+ ContactFlowId: string | undefined;
699
+ Attributes?: Record<string, string> | undefined;
700
+ ParticipantDetails: ParticipantDetails | undefined;
701
+ InitialMessage?: ChatMessage | undefined;
702
+ ClientToken?: string | undefined;
703
+ ChatDurationInMinutes?: number | undefined;
704
+ SupportedMessagingContentTypes?: string[] | undefined;
705
+ PersistentChat?: PersistentChat | undefined;
706
+ RelatedContactId?: string | undefined;
707
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
708
+ CustomerId?: string | undefined;
709
+ }
710
+ export interface StartEmailContactRequest {
711
+ InstanceId: string | undefined;
712
+ FromEmailAddress: EmailAddressInfo | undefined;
713
+ DestinationEmailAddress: string | undefined;
714
+ Description?: string | undefined;
715
+ References?: Record<string, Reference> | undefined;
716
+ Name?: string | undefined;
717
+ EmailMessage: InboundEmailContent | undefined;
718
+ AdditionalRecipients?: InboundAdditionalRecipients | undefined;
719
+ Attachments?: EmailAttachment[] | undefined;
720
+ ContactFlowId?: string | undefined;
721
+ RelatedContactId?: string | undefined;
722
+ Attributes?: Record<string, string> | undefined;
723
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
724
+ ClientToken?: string | undefined;
725
+ }
726
+ export interface StartOutboundChatContactRequest {
727
+ SourceEndpoint: Endpoint | undefined;
728
+ DestinationEndpoint: Endpoint | undefined;
729
+ InstanceId: string | undefined;
730
+ SegmentAttributes: Record<string, SegmentAttributeValue> | undefined;
731
+ Attributes?: Record<string, string> | undefined;
732
+ ContactFlowId: string | undefined;
733
+ ChatDurationInMinutes?: number | undefined;
734
+ ParticipantDetails?: ParticipantDetails | undefined;
735
+ InitialSystemMessage?: ChatMessage | undefined;
736
+ RelatedContactId?: string | undefined;
737
+ SupportedMessagingContentTypes?: string[] | undefined;
738
+ ClientToken?: string | undefined;
739
+ }
740
+ export interface StartTaskContactRequest {
741
+ InstanceId: string | undefined;
742
+ PreviousContactId?: string | undefined;
743
+ ContactFlowId?: string | undefined;
744
+ Attributes?: Record<string, string> | undefined;
745
+ Name: string | undefined;
746
+ References?: Record<string, Reference> | undefined;
747
+ Description?: string | undefined;
748
+ ClientToken?: string | undefined;
749
+ ScheduledTime?: Date | undefined;
750
+ TaskTemplateId?: string | undefined;
751
+ QuickConnectId?: string | undefined;
752
+ RelatedContactId?: string | undefined;
753
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
754
+ }
755
+ export interface UpdateContactRequest {
756
+ InstanceId: string | undefined;
757
+ ContactId: string | undefined;
758
+ Name?: string | undefined;
759
+ Description?: string | undefined;
760
+ References?: Record<string, Reference> | undefined;
761
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
762
+ QueueInfo?: QueueInfoInput | undefined;
763
+ UserInfo?: UserInfo | undefined;
764
+ CustomerEndpoint?: Endpoint | undefined;
765
+ SystemEndpoint?: Endpoint | undefined;
766
+ }
754
767
  export interface RoutingCriteria {
755
768
  Steps?: Step[] | undefined;
756
769
  ActivationTimestamp?: Date | undefined;
@@ -814,6 +827,9 @@ export interface Contact {
814
827
  export interface DescribeContactResponse {
815
828
  Contact?: Contact | undefined;
816
829
  }
830
+ export declare const UpdateParticipantAuthenticationRequestFilterSensitiveLog: (
831
+ obj: UpdateParticipantAuthenticationRequest
832
+ ) => any;
817
833
  export declare const UpdateUserIdentityInfoRequestFilterSensitiveLog: (
818
834
  obj: UpdateUserIdentityInfoRequest
819
835
  ) => any;
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.883.0",
4
+ "version": "3.885.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",