@aws-sdk/client-connect 3.699.0 → 3.701.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 (55) hide show
  1. package/dist-cjs/index.js +96 -47
  2. package/dist-es/commands/CreateContactCommand.js +1 -1
  3. package/dist-es/commands/StartEmailContactCommand.js +1 -1
  4. package/dist-es/commands/StartTaskContactCommand.js +1 -1
  5. package/dist-es/commands/UpdateContactCommand.js +1 -1
  6. package/dist-es/models/models_0.js +0 -5
  7. package/dist-es/models/models_1.js +5 -0
  8. package/dist-es/models/models_2.js +5 -27
  9. package/dist-es/models/models_3.js +23 -0
  10. package/dist-es/protocols/Aws_restJson1.js +57 -8
  11. package/dist-types/commands/CreateContactCommand.d.ts +13 -2
  12. package/dist-types/commands/CreateEmailAddressCommand.d.ts +3 -1
  13. package/dist-types/commands/CreateEvaluationFormCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteEmailAddressCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteViewVersionCommand.d.ts +1 -2
  16. package/dist-types/commands/DeleteVocabularyCommand.d.ts +2 -1
  17. package/dist-types/commands/DescribeContactCommand.d.ts +10 -0
  18. package/dist-types/commands/DescribeContactFlowCommand.d.ts +1 -2
  19. package/dist-types/commands/DescribeContactFlowModuleCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeEmailAddressCommand.d.ts +1 -1
  21. package/dist-types/commands/ListAssociatedContactsCommand.d.ts +2 -1
  22. package/dist-types/commands/ListRealtimeContactAnalysisSegmentsV2Command.d.ts +1 -1
  23. package/dist-types/commands/SearchContactFlowsCommand.d.ts +1 -3
  24. package/dist-types/commands/SearchEmailAddressesCommand.d.ts +1 -1
  25. package/dist-types/commands/SendOutboundEmailCommand.d.ts +6 -1
  26. package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +3 -1
  27. package/dist-types/commands/StartChatContactCommand.d.ts +12 -1
  28. package/dist-types/commands/StartEmailContactCommand.d.ts +14 -2
  29. package/dist-types/commands/StartOutboundChatContactCommand.d.ts +12 -1
  30. package/dist-types/commands/StartOutboundEmailContactCommand.d.ts +2 -1
  31. package/dist-types/commands/StartTaskContactCommand.d.ts +12 -1
  32. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  33. package/dist-types/commands/UpdateContactCommand.d.ts +12 -1
  34. package/dist-types/commands/UpdateContactFlowContentCommand.d.ts +1 -1
  35. package/dist-types/commands/UpdateContactFlowModuleContentCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateEmailAddressMetadataCommand.d.ts +2 -1
  37. package/dist-types/commands/UpdateQueueOutboundEmailConfigCommand.d.ts +2 -2
  38. package/dist-types/models/models_0.d.ts +60 -118
  39. package/dist-types/models/models_1.d.ts +117 -71
  40. package/dist-types/models/models_2.d.ts +544 -718
  41. package/dist-types/models/models_3.d.ts +545 -246
  42. package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +2 -4
  43. package/dist-types/ts3.4/commands/CreateEvaluationFormCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/DeleteViewVersionCommand.d.ts +4 -2
  45. package/dist-types/ts3.4/commands/DeleteVocabularyCommand.d.ts +2 -4
  46. package/dist-types/ts3.4/commands/StartChatContactCommand.d.ts +2 -4
  47. package/dist-types/ts3.4/commands/StartEmailContactCommand.d.ts +2 -4
  48. package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +2 -4
  49. package/dist-types/ts3.4/commands/StartTaskContactCommand.d.ts +2 -4
  50. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +2 -4
  51. package/dist-types/ts3.4/models/models_0.d.ts +5 -21
  52. package/dist-types/ts3.4/models/models_1.d.ts +18 -6
  53. package/dist-types/ts3.4/models/models_2.d.ts +76 -97
  54. package/dist-types/ts3.4/models/models_3.d.ts +96 -58
  55. package/package.json +1 -1
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- CreateContactRequest,
10
- CreateContactResponse,
11
- } from "../models/models_0";
8
+ import { CreateContactResponse } from "../models/models_0";
9
+ import { CreateContactRequest } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface CreateContactCommandInput extends CreateContactRequest {}
@@ -6,7 +6,7 @@ import {
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
8
  import { CreateEvaluationFormResponse } from "../models/models_0";
9
- import { CreateEvaluationFormRequest } from "../models/models_3";
9
+ import { CreateEvaluationFormRequest } from "../models/models_2";
10
10
  export { __MetadataBearer };
11
11
  export { $Command };
12
12
  export interface CreateEvaluationFormCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { DeleteViewVersionRequest } from "../models/models_0";
9
- import { DeleteViewVersionResponse } from "../models/models_1";
8
+ import {
9
+ DeleteViewVersionRequest,
10
+ DeleteViewVersionResponse,
11
+ } from "../models/models_0";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface DeleteViewVersionCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- DeleteVocabularyRequest,
10
- DeleteVocabularyResponse,
11
- } from "../models/models_1";
8
+ import { DeleteVocabularyRequest } from "../models/models_0";
9
+ import { DeleteVocabularyResponse } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface DeleteVocabularyCommandInput extends DeleteVocabularyRequest {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- StartChatContactRequest,
10
- StartChatContactResponse,
11
- } from "../models/models_2";
8
+ import { StartChatContactResponse } from "../models/models_2";
9
+ import { StartChatContactRequest } from "../models/models_3";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface StartChatContactCommandInput extends StartChatContactRequest {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- StartEmailContactRequest,
10
- StartEmailContactResponse,
11
- } from "../models/models_2";
8
+ import { StartEmailContactResponse } from "../models/models_2";
9
+ import { StartEmailContactRequest } from "../models/models_3";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface StartEmailContactCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- StartOutboundChatContactRequest,
10
- StartOutboundChatContactResponse,
11
- } from "../models/models_2";
8
+ import { StartOutboundChatContactResponse } from "../models/models_2";
9
+ import { StartOutboundChatContactRequest } from "../models/models_3";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface StartOutboundChatContactCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- StartTaskContactRequest,
10
- StartTaskContactResponse,
11
- } from "../models/models_2";
8
+ import { StartTaskContactResponse } from "../models/models_2";
9
+ import { StartTaskContactRequest } from "../models/models_3";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface StartTaskContactCommandInput extends StartTaskContactRequest {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- UpdateContactRequest,
10
- UpdateContactResponse,
11
- } from "../models/models_2";
8
+ import { UpdateContactResponse } from "../models/models_2";
9
+ import { UpdateContactRequest } from "../models/models_3";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface UpdateContactCommandInput extends UpdateContactRequest {}
@@ -813,27 +813,9 @@ export interface Reference {
813
813
  Arn?: string | undefined;
814
814
  StatusReason?: string | undefined;
815
815
  }
816
- export interface SegmentAttributeValue {
817
- ValueString?: string | undefined;
818
- }
819
816
  export interface UserInfo {
820
817
  UserId?: string | undefined;
821
818
  }
822
- export interface CreateContactRequest {
823
- InstanceId: string | undefined;
824
- ClientToken?: string | undefined;
825
- RelatedContactId?: string | undefined;
826
- Attributes?: Record<string, string> | undefined;
827
- References?: Record<string, Reference> | undefined;
828
- Channel: Channel | undefined;
829
- InitiationMethod: ContactInitiationMethod | undefined;
830
- ExpiryDurationInMinutes?: number | undefined;
831
- UserInfo?: UserInfo | undefined;
832
- InitiateAs?: InitiateAs | undefined;
833
- Name?: string | undefined;
834
- Description?: string | undefined;
835
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
836
- }
837
819
  export interface CreateContactResponse {
838
820
  ContactId?: string | undefined;
839
821
  ContactArn?: string | undefined;
@@ -1855,9 +1837,11 @@ export interface DeleteViewVersionRequest {
1855
1837
  ViewId: string | undefined;
1856
1838
  ViewVersion: number | undefined;
1857
1839
  }
1858
- export declare const CreateContactRequestFilterSensitiveLog: (
1859
- obj: CreateContactRequest
1860
- ) => any;
1840
+ export interface DeleteViewVersionResponse {}
1841
+ export interface DeleteVocabularyRequest {
1842
+ InstanceId: string | undefined;
1843
+ VocabularyId: string | undefined;
1844
+ }
1861
1845
  export declare const CreateEmailAddressRequestFilterSensitiveLog: (
1862
1846
  obj: CreateEmailAddressRequest
1863
1847
  ) => any;
@@ -59,11 +59,6 @@ import {
59
59
  VocabularyLanguageCode,
60
60
  VocabularyState,
61
61
  } from "./models_0";
62
- export interface DeleteViewVersionResponse {}
63
- export interface DeleteVocabularyRequest {
64
- InstanceId: string | undefined;
65
- VocabularyId: string | undefined;
66
- }
67
62
  export interface DeleteVocabularyResponse {
68
63
  VocabularyArn: string | undefined;
69
64
  VocabularyId: string | undefined;
@@ -280,7 +275,6 @@ export interface ContactFlow {
280
275
  Description?: string | undefined;
281
276
  Content?: string | undefined;
282
277
  Tags?: Record<string, string> | undefined;
283
- IsDefault?: boolean | undefined;
284
278
  FlowContentSha256?: string | undefined;
285
279
  Version?: number | undefined;
286
280
  VersionDescription?: string | undefined;
@@ -2173,6 +2167,24 @@ export interface RealTimeContactAnalysisSegmentPostContactSummary {
2173
2167
  export interface RealTimeContactAnalysisTranscriptItemRedaction {
2174
2168
  CharacterOffsets?: RealTimeContactAnalysisCharacterInterval[] | undefined;
2175
2169
  }
2170
+ export declare const RealTimeContactAnalysisSentimentLabel: {
2171
+ readonly NEGATIVE: "NEGATIVE";
2172
+ readonly NEUTRAL: "NEUTRAL";
2173
+ readonly POSITIVE: "POSITIVE";
2174
+ };
2175
+ export type RealTimeContactAnalysisSentimentLabel =
2176
+ (typeof RealTimeContactAnalysisSentimentLabel)[keyof typeof RealTimeContactAnalysisSentimentLabel];
2177
+ export interface RealTimeContactAnalysisSegmentTranscript {
2178
+ Id: string | undefined;
2179
+ ParticipantId: string | undefined;
2180
+ ParticipantRole: ParticipantRole | undefined;
2181
+ DisplayName?: string | undefined;
2182
+ Content: string | undefined;
2183
+ ContentType?: string | undefined;
2184
+ Time: RealTimeContactAnalysisTimeData | undefined;
2185
+ Redaction?: RealTimeContactAnalysisTranscriptItemRedaction | undefined;
2186
+ Sentiment?: RealTimeContactAnalysisSentimentLabel | undefined;
2187
+ }
2176
2188
  export declare const DescribeEmailAddressResponseFilterSensitiveLog: (
2177
2189
  obj: DescribeEmailAddressResponse
2178
2190
  ) => any;
@@ -10,15 +10,18 @@ import {
10
10
  AllowedCapabilities,
11
11
  Application,
12
12
  Channel,
13
+ ContactFlowStatus,
14
+ ContactFlowType,
13
15
  ContactInitiationMethod,
14
16
  ControlPlaneAttributeFilter,
15
17
  CreatedByInfo,
16
- Endpoint,
17
18
  EvaluationFormQuestion,
19
+ EvaluationFormScoringStrategy,
18
20
  EventSourceName,
19
21
  FileStatusType,
20
22
  FileUseCaseType,
21
23
  HoursOfOperationConfig,
24
+ InitiateAs,
22
25
  InstanceStorageConfig,
23
26
  InstanceStorageResourceType,
24
27
  MediaConcurrency,
@@ -33,7 +36,6 @@ import {
33
36
  RoutingProfileQueueConfig,
34
37
  RuleAction,
35
38
  RulePublishStatus,
36
- SegmentAttributeValue,
37
39
  StringComparisonType,
38
40
  StringCondition,
39
41
  TagCondition,
@@ -43,6 +45,7 @@ import {
43
45
  TaskTemplateStatus,
44
46
  UseCaseType,
45
47
  UserIdentityInfo,
48
+ UserInfo,
46
49
  UserPhoneConfig,
47
50
  UserProficiency,
48
51
  View,
@@ -58,6 +61,7 @@ import {
58
61
  ContactFlowModuleState,
59
62
  ContactFlowState,
60
63
  EvaluationAnswerData,
64
+ EvaluationFormVersionStatus,
61
65
  EvaluationNote,
62
66
  HierarchyGroup,
63
67
  HierarchyGroupSummary,
@@ -75,33 +79,14 @@ import {
75
79
  RealTimeContactAnalysisSegmentEvent,
76
80
  RealTimeContactAnalysisSegmentIssues,
77
81
  RealTimeContactAnalysisSegmentPostContactSummary,
82
+ RealTimeContactAnalysisSegmentTranscript,
78
83
  RealTimeContactAnalysisSupportedChannel,
79
- RealTimeContactAnalysisTimeData,
80
- RealTimeContactAnalysisTranscriptItemRedaction,
81
84
  RoutingProfile,
82
85
  SignInConfig,
83
86
  SortOrder,
84
87
  TelephonyConfig,
85
88
  TrafficDistributionGroupStatus,
86
89
  } from "./models_1";
87
- export declare const RealTimeContactAnalysisSentimentLabel: {
88
- readonly NEGATIVE: "NEGATIVE";
89
- readonly NEUTRAL: "NEUTRAL";
90
- readonly POSITIVE: "POSITIVE";
91
- };
92
- export type RealTimeContactAnalysisSentimentLabel =
93
- (typeof RealTimeContactAnalysisSentimentLabel)[keyof typeof RealTimeContactAnalysisSentimentLabel];
94
- export interface RealTimeContactAnalysisSegmentTranscript {
95
- Id: string | undefined;
96
- ParticipantId: string | undefined;
97
- ParticipantRole: ParticipantRole | undefined;
98
- DisplayName?: string | undefined;
99
- Content: string | undefined;
100
- ContentType?: string | undefined;
101
- Time: RealTimeContactAnalysisTimeData | undefined;
102
- Redaction?: RealTimeContactAnalysisTranscriptItemRedaction | undefined;
103
- Sentiment?: RealTimeContactAnalysisSentimentLabel | undefined;
104
- }
105
90
  export type RealtimeContactAnalysisSegment =
106
91
  | RealtimeContactAnalysisSegment.AttachmentsMember
107
92
  | RealtimeContactAnalysisSegment.CategoriesMember
@@ -1011,19 +996,6 @@ export interface PersistentChat {
1011
996
  RehydrationType?: RehydrationType | undefined;
1012
997
  SourceContactId?: string | undefined;
1013
998
  }
1014
- export interface StartChatContactRequest {
1015
- InstanceId: string | undefined;
1016
- ContactFlowId: string | undefined;
1017
- Attributes?: Record<string, string> | undefined;
1018
- ParticipantDetails: ParticipantDetails | undefined;
1019
- InitialMessage?: ChatMessage | undefined;
1020
- ClientToken?: string | undefined;
1021
- ChatDurationInMinutes?: number | undefined;
1022
- SupportedMessagingContentTypes?: string[] | undefined;
1023
- PersistentChat?: PersistentChat | undefined;
1024
- RelatedContactId?: string | undefined;
1025
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
1026
- }
1027
999
  export interface StartChatContactResponse {
1028
1000
  ContactId?: string | undefined;
1029
1001
  ParticipantId?: string | undefined;
@@ -1098,39 +1070,9 @@ export interface InboundEmailContent {
1098
1070
  MessageSourceType: InboundMessageSourceType | undefined;
1099
1071
  RawMessage?: InboundRawMessage | undefined;
1100
1072
  }
1101
- export interface StartEmailContactRequest {
1102
- InstanceId: string | undefined;
1103
- FromEmailAddress: EmailAddressInfo | undefined;
1104
- DestinationEmailAddress: string | undefined;
1105
- Description?: string | undefined;
1106
- References?: Record<string, Reference> | undefined;
1107
- Name?: string | undefined;
1108
- EmailMessage: InboundEmailContent | undefined;
1109
- AdditionalRecipients?: InboundAdditionalRecipients | undefined;
1110
- Attachments?: EmailAttachment[] | undefined;
1111
- ContactFlowId?: string | undefined;
1112
- RelatedContactId?: string | undefined;
1113
- Attributes?: Record<string, string> | undefined;
1114
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
1115
- ClientToken?: string | undefined;
1116
- }
1117
1073
  export interface StartEmailContactResponse {
1118
1074
  ContactId?: string | undefined;
1119
1075
  }
1120
- export interface StartOutboundChatContactRequest {
1121
- SourceEndpoint: Endpoint | undefined;
1122
- DestinationEndpoint: Endpoint | undefined;
1123
- InstanceId: string | undefined;
1124
- SegmentAttributes: Record<string, SegmentAttributeValue> | undefined;
1125
- Attributes?: Record<string, string> | undefined;
1126
- ContactFlowId: string | undefined;
1127
- ChatDurationInMinutes?: number | undefined;
1128
- ParticipantDetails?: ParticipantDetails | undefined;
1129
- InitialSystemMessage?: ChatMessage | undefined;
1130
- RelatedContactId?: string | undefined;
1131
- SupportedMessagingContentTypes?: string[] | undefined;
1132
- ClientToken?: string | undefined;
1133
- }
1134
1076
  export interface StartOutboundChatContactResponse {
1135
1077
  ContactId?: string | undefined;
1136
1078
  }
@@ -1194,21 +1136,6 @@ export interface StartScreenSharingRequest {
1194
1136
  ContactId: string | undefined;
1195
1137
  }
1196
1138
  export interface StartScreenSharingResponse {}
1197
- export interface StartTaskContactRequest {
1198
- InstanceId: string | undefined;
1199
- PreviousContactId?: string | undefined;
1200
- ContactFlowId?: string | undefined;
1201
- Attributes?: Record<string, string> | undefined;
1202
- Name: string | undefined;
1203
- References?: Record<string, Reference> | undefined;
1204
- Description?: string | undefined;
1205
- ClientToken?: string | undefined;
1206
- ScheduledTime?: Date | undefined;
1207
- TaskTemplateId?: string | undefined;
1208
- QuickConnectId?: string | undefined;
1209
- RelatedContactId?: string | undefined;
1210
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
1211
- }
1212
1139
  export interface StartTaskContactResponse {
1213
1140
  ContactId?: string | undefined;
1214
1141
  }
@@ -1360,14 +1287,6 @@ export interface UpdateAuthenticationProfileRequest {
1360
1287
  BlockedIps?: string[] | undefined;
1361
1288
  PeriodicSessionDuration?: number | undefined;
1362
1289
  }
1363
- export interface UpdateContactRequest {
1364
- InstanceId: string | undefined;
1365
- ContactId: string | undefined;
1366
- Name?: string | undefined;
1367
- Description?: string | undefined;
1368
- References?: Record<string, Reference> | undefined;
1369
- SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
1370
- }
1371
1290
  export interface UpdateContactResponse {}
1372
1291
  export interface UpdateContactAttributesRequest {
1373
1292
  InitialContactId: string | undefined;
@@ -1772,6 +1691,11 @@ export interface UpdateViewMetadataRequest {
1772
1691
  Description?: string | undefined;
1773
1692
  }
1774
1693
  export interface UpdateViewMetadataResponse {}
1694
+ export interface SegmentAttributeValue {
1695
+ ValueString?: string | undefined;
1696
+ ValueMap?: Record<string, SegmentAttributeValue> | undefined;
1697
+ ValueInteger?: number | undefined;
1698
+ }
1775
1699
  export type EvaluationFormItem =
1776
1700
  | EvaluationFormItem.QuestionMember
1777
1701
  | EvaluationFormItem.SectionMember
@@ -1816,6 +1740,67 @@ export interface ContactFlowModuleSearchCriteria {
1816
1740
  AndConditions?: ContactFlowModuleSearchCriteria[] | undefined;
1817
1741
  StringCondition?: StringCondition | undefined;
1818
1742
  }
1743
+ export interface ContactFlowSearchCriteria {
1744
+ OrConditions?: ContactFlowSearchCriteria[] | undefined;
1745
+ AndConditions?: ContactFlowSearchCriteria[] | undefined;
1746
+ StringCondition?: StringCondition | undefined;
1747
+ TypeCondition?: ContactFlowType | undefined;
1748
+ StateCondition?: ContactFlowState | undefined;
1749
+ StatusCondition?: ContactFlowStatus | undefined;
1750
+ }
1751
+ export interface CreateContactRequest {
1752
+ InstanceId: string | undefined;
1753
+ ClientToken?: string | undefined;
1754
+ RelatedContactId?: string | undefined;
1755
+ Attributes?: Record<string, string> | undefined;
1756
+ References?: Record<string, Reference> | undefined;
1757
+ Channel: Channel | undefined;
1758
+ InitiationMethod: ContactInitiationMethod | undefined;
1759
+ ExpiryDurationInMinutes?: number | undefined;
1760
+ UserInfo?: UserInfo | undefined;
1761
+ InitiateAs?: InitiateAs | undefined;
1762
+ Name?: string | undefined;
1763
+ Description?: string | undefined;
1764
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
1765
+ }
1766
+ export interface CreateEvaluationFormRequest {
1767
+ InstanceId: string | undefined;
1768
+ Title: string | undefined;
1769
+ Description?: string | undefined;
1770
+ Items: EvaluationFormItem[] | undefined;
1771
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
1772
+ ClientToken?: string | undefined;
1773
+ }
1774
+ export interface EmailAddressSearchCriteria {
1775
+ OrConditions?: EmailAddressSearchCriteria[] | undefined;
1776
+ AndConditions?: EmailAddressSearchCriteria[] | undefined;
1777
+ StringCondition?: StringCondition | undefined;
1778
+ }
1779
+ export interface EvaluationForm {
1780
+ EvaluationFormId: string | undefined;
1781
+ EvaluationFormVersion: number | undefined;
1782
+ Locked: boolean | undefined;
1783
+ EvaluationFormArn: string | undefined;
1784
+ Title: string | undefined;
1785
+ Description?: string | undefined;
1786
+ Status: EvaluationFormVersionStatus | undefined;
1787
+ Items: EvaluationFormItem[] | undefined;
1788
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
1789
+ CreatedTime: Date | undefined;
1790
+ CreatedBy: string | undefined;
1791
+ LastModifiedTime: Date | undefined;
1792
+ LastModifiedBy: string | undefined;
1793
+ Tags?: Record<string, string> | undefined;
1794
+ }
1795
+ export interface EvaluationFormContent {
1796
+ EvaluationFormVersion: number | undefined;
1797
+ EvaluationFormId: string | undefined;
1798
+ EvaluationFormArn: string | undefined;
1799
+ Title: string | undefined;
1800
+ Description?: string | undefined;
1801
+ Items: EvaluationFormItem[] | undefined;
1802
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
1803
+ }
1819
1804
  export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
1820
1805
  export declare const ListViewsResponseFilterSensitiveLog: (
1821
1806
  obj: ListViewsResponse
@@ -1893,18 +1878,12 @@ export declare const InboundRawMessageFilterSensitiveLog: (
1893
1878
  export declare const InboundEmailContentFilterSensitiveLog: (
1894
1879
  obj: InboundEmailContent
1895
1880
  ) => any;
1896
- export declare const StartEmailContactRequestFilterSensitiveLog: (
1897
- obj: StartEmailContactRequest
1898
- ) => any;
1899
1881
  export declare const StartOutboundEmailContactRequestFilterSensitiveLog: (
1900
1882
  obj: StartOutboundEmailContactRequest
1901
1883
  ) => any;
1902
1884
  export declare const StartOutboundVoiceContactRequestFilterSensitiveLog: (
1903
1885
  obj: StartOutboundVoiceContactRequest
1904
1886
  ) => any;
1905
- export declare const StartTaskContactRequestFilterSensitiveLog: (
1906
- obj: StartTaskContactRequest
1907
- ) => any;
1908
1887
  export declare const StartWebRTCContactRequestFilterSensitiveLog: (
1909
1888
  obj: StartWebRTCContactRequest
1910
1889
  ) => any;
@@ -1915,9 +1894,6 @@ export declare const ConnectionDataFilterSensitiveLog: (
1915
1894
  export declare const StartWebRTCContactResponseFilterSensitiveLog: (
1916
1895
  obj: StartWebRTCContactResponse
1917
1896
  ) => any;
1918
- export declare const UpdateContactRequestFilterSensitiveLog: (
1919
- obj: UpdateContactRequest
1920
- ) => any;
1921
1897
  export declare const UpdateEmailAddressMetadataRequestFilterSensitiveLog: (
1922
1898
  obj: UpdateEmailAddressMetadataRequest
1923
1899
  ) => any;
@@ -1933,3 +1909,6 @@ export declare const UpdateViewContentResponseFilterSensitiveLog: (
1933
1909
  export declare const UpdateViewMetadataRequestFilterSensitiveLog: (
1934
1910
  obj: UpdateViewMetadataRequest
1935
1911
  ) => any;
1912
+ export declare const CreateContactRequestFilterSensitiveLog: (
1913
+ obj: CreateContactRequest
1914
+ ) => any;