@aws-sdk/client-connect 3.970.0 → 3.971.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 (33) hide show
  1. package/dist-cjs/index.js +72 -17
  2. package/dist-es/models/enums.js +5 -0
  3. package/dist-es/schemas/schemas_0.js +61 -17
  4. package/dist-types/commands/CreateEvaluationFormCommand.d.ts +11 -0
  5. package/dist-types/commands/DeleteAttachedFileCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteContactEvaluationCommand.d.ts +1 -1
  7. package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +24 -1
  8. package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +11 -0
  9. package/dist-types/commands/ListChildHoursOfOperationsCommand.d.ts +1 -1
  10. package/dist-types/commands/ListContactEvaluationsCommand.d.ts +2 -3
  11. package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  12. package/dist-types/commands/StartContactEvaluationCommand.d.ts +1 -1
  13. package/dist-types/commands/StartContactMediaProcessingCommand.d.ts +1 -1
  14. package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +11 -0
  15. package/dist-types/models/enums.d.ts +13 -0
  16. package/dist-types/models/models_0.d.ts +44 -47
  17. package/dist-types/models/models_1.d.ts +98 -178
  18. package/dist-types/models/models_2.d.ts +180 -103
  19. package/dist-types/models/models_3.d.ts +124 -3
  20. package/dist-types/schemas/schemas_0.d.ts +5 -0
  21. package/dist-types/ts3.4/commands/DeleteAttachedFileCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/DeleteContactEvaluationCommand.d.ts +1 -1
  23. package/dist-types/ts3.4/commands/ListChildHoursOfOperationsCommand.d.ts +1 -1
  24. package/dist-types/ts3.4/commands/ListContactEvaluationsCommand.d.ts +4 -2
  25. package/dist-types/ts3.4/commands/StartContactEvaluationCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/commands/StartContactMediaProcessingCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +14 -10
  29. package/dist-types/ts3.4/models/models_1.d.ts +22 -39
  30. package/dist-types/ts3.4/models/models_2.d.ts +42 -27
  31. package/dist-types/ts3.4/models/models_3.d.ts +32 -1
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
  33. package/package.json +3 -3
@@ -111,6 +111,16 @@ import {
111
111
  SuccessfulBatchAssociationSummary,
112
112
  TaskTemplateField,
113
113
  } from "./models_0";
114
+ export interface DeleteAttachedFileRequest {
115
+ InstanceId: string | undefined;
116
+ FileId: string | undefined;
117
+ AssociatedResourceArn: string | undefined;
118
+ }
119
+ export interface DeleteAttachedFileResponse {}
120
+ export interface DeleteContactEvaluationRequest {
121
+ InstanceId: string | undefined;
122
+ EvaluationId: string | undefined;
123
+ }
114
124
  export interface DeleteContactFlowRequest {
115
125
  InstanceId: string | undefined;
116
126
  ContactFlowId: string | undefined;
@@ -589,6 +599,17 @@ export interface EvaluationContactParticipant {
589
599
  ContactParticipantRole?: ContactParticipantRole | undefined;
590
600
  ContactParticipantId?: string | undefined;
591
601
  }
602
+ export interface EvaluationReviewRequestComment {
603
+ Comment?: string | undefined;
604
+ CreatedTime?: Date | undefined;
605
+ CreatedBy?: string | undefined;
606
+ }
607
+ export interface EvaluationReviewMetadata {
608
+ ReviewId?: string | undefined;
609
+ CreatedTime: Date | undefined;
610
+ CreatedBy: string | undefined;
611
+ ReviewRequestComments: EvaluationReviewRequestComment[] | undefined;
612
+ }
592
613
  export interface EvaluationScore {
593
614
  Percentage?: number | undefined;
594
615
  NotApplicable?: boolean | undefined;
@@ -603,6 +624,7 @@ export interface EvaluationMetadata {
603
624
  Score?: EvaluationScore | undefined;
604
625
  AutoEvaluation?: AutoEvaluationDetails | undefined;
605
626
  Acknowledgement?: EvaluationAcknowledgement | undefined;
627
+ Review?: EvaluationReviewMetadata | undefined;
606
628
  ContactParticipant?: EvaluationContactParticipant | undefined;
607
629
  SamplingJobId?: string | undefined;
608
630
  }
@@ -1746,42 +1768,3 @@ export interface ListBotsResponse {
1746
1768
  LexBots?: LexBotConfig[] | undefined;
1747
1769
  NextToken?: string | undefined;
1748
1770
  }
1749
- export interface ListChildHoursOfOperationsRequest {
1750
- InstanceId: string | undefined;
1751
- HoursOfOperationId: string | undefined;
1752
- NextToken?: string | undefined;
1753
- MaxResults?: number | undefined;
1754
- }
1755
- export interface ListChildHoursOfOperationsResponse {
1756
- NextToken?: string | undefined;
1757
- ChildHoursOfOperationsSummaryList?: HoursOfOperationsIdentifier[] | undefined;
1758
- LastModifiedTime?: Date | undefined;
1759
- LastModifiedRegion?: string | undefined;
1760
- }
1761
- export interface ListContactEvaluationsRequest {
1762
- InstanceId: string | undefined;
1763
- ContactId: string | undefined;
1764
- NextToken?: string | undefined;
1765
- }
1766
- export interface EvaluationAcknowledgementSummary {
1767
- AcknowledgedTime?: Date | undefined;
1768
- AcknowledgedBy?: string | undefined;
1769
- AcknowledgerComment?: string | undefined;
1770
- }
1771
- export interface EvaluationSummary {
1772
- EvaluationId: string | undefined;
1773
- EvaluationArn: string | undefined;
1774
- EvaluationFormTitle: string | undefined;
1775
- EvaluationFormId: string | undefined;
1776
- CalibrationSessionId?: string | undefined;
1777
- Status: EvaluationStatus | undefined;
1778
- AutoEvaluationEnabled?: boolean | undefined;
1779
- AutoEvaluationStatus?: AutoEvaluationStatus | undefined;
1780
- EvaluatorArn: string | undefined;
1781
- Score?: EvaluationScore | undefined;
1782
- Acknowledgement?: EvaluationAcknowledgementSummary | undefined;
1783
- EvaluationType?: EvaluationType | undefined;
1784
- CreatedTime: Date | undefined;
1785
- LastModifiedTime: Date | undefined;
1786
- ContactParticipant?: EvaluationContactParticipant | undefined;
1787
- }
@@ -10,7 +10,6 @@ import {
10
10
  ContactFlowType,
11
11
  ContactInitiationMethod,
12
12
  ContactInteractionType,
13
- ContactMediaProcessingFailureMode,
14
13
  ContactParticipantRole,
15
14
  ContactRecordingType,
16
15
  DataTableAttributeValueType,
@@ -30,7 +29,6 @@ import {
30
29
  InstanceStatus,
31
30
  InstanceStorageResourceType,
32
31
  IntegrationType,
33
- IvrRecordingTrack,
34
32
  ListFlowAssociationResourceType,
35
33
  MediaType,
36
34
  MonitorCapability,
@@ -70,7 +68,6 @@ import {
70
68
  Visibility,
71
69
  VocabularyLanguageCode,
72
70
  VocabularyState,
73
- VoiceRecordingTrack,
74
71
  } from "./enums";
75
72
  import {
76
73
  AgentHierarchyGroups,
@@ -94,22 +91,63 @@ import {
94
91
  View,
95
92
  } from "./models_0";
96
93
  import {
94
+ EvaluationContactParticipant,
95
+ EvaluationScore,
97
96
  Attribute,
98
97
  ContactFlow,
99
98
  ContactFlowModule,
100
99
  DataTable,
101
100
  DataTableAttribute,
102
- EvaluationSummary,
103
101
  HierarchyGroup,
104
102
  HierarchyGroupSummary,
105
103
  HoursOfOperation,
106
104
  HoursOfOperationOverride,
105
+ HoursOfOperationsIdentifier,
107
106
  PredefinedAttribute,
108
107
  Prompt,
109
108
  Queue,
110
109
  QuickConnect,
111
110
  RoutingProfile,
112
111
  } from "./models_1";
112
+ export interface ListChildHoursOfOperationsRequest {
113
+ InstanceId: string | undefined;
114
+ HoursOfOperationId: string | undefined;
115
+ NextToken?: string | undefined;
116
+ MaxResults?: number | undefined;
117
+ }
118
+ export interface ListChildHoursOfOperationsResponse {
119
+ NextToken?: string | undefined;
120
+ ChildHoursOfOperationsSummaryList?: HoursOfOperationsIdentifier[] | undefined;
121
+ LastModifiedTime?: Date | undefined;
122
+ LastModifiedRegion?: string | undefined;
123
+ }
124
+ export interface ListContactEvaluationsRequest {
125
+ InstanceId: string | undefined;
126
+ ContactId: string | undefined;
127
+ NextToken?: string | undefined;
128
+ }
129
+ export interface EvaluationAcknowledgementSummary {
130
+ AcknowledgedTime?: Date | undefined;
131
+ AcknowledgedBy?: string | undefined;
132
+ AcknowledgerComment?: string | undefined;
133
+ }
134
+ export interface EvaluationSummary {
135
+ EvaluationId: string | undefined;
136
+ EvaluationArn: string | undefined;
137
+ EvaluationFormTitle: string | undefined;
138
+ EvaluationFormId: string | undefined;
139
+ CalibrationSessionId?: string | undefined;
140
+ Status: EvaluationStatus | undefined;
141
+ AutoEvaluationEnabled?: boolean | undefined;
142
+ AutoEvaluationStatus?: AutoEvaluationStatus | undefined;
143
+ EvaluatorArn: string | undefined;
144
+ Score?: EvaluationScore | undefined;
145
+ Acknowledgement?: EvaluationAcknowledgementSummary | undefined;
146
+ EvaluationType?: EvaluationType | undefined;
147
+ CreatedTime: Date | undefined;
148
+ LastModifiedTime: Date | undefined;
149
+ ContactParticipant?: EvaluationContactParticipant | undefined;
150
+ }
113
151
  export interface ListContactEvaluationsResponse {
114
152
  EvaluationSummaryList: EvaluationSummary[] | undefined;
115
153
  NextToken?: string | undefined;
@@ -1909,26 +1947,3 @@ export interface StartChatContactResponse {
1909
1947
  export interface AutoEvaluationConfiguration {
1910
1948
  Enabled: boolean | undefined;
1911
1949
  }
1912
- export interface StartContactEvaluationRequest {
1913
- InstanceId: string | undefined;
1914
- ContactId: string | undefined;
1915
- EvaluationFormId: string | undefined;
1916
- AutoEvaluationConfiguration?: AutoEvaluationConfiguration | undefined;
1917
- ClientToken?: string | undefined;
1918
- Tags?: Record<string, string> | undefined;
1919
- }
1920
- export interface StartContactEvaluationResponse {
1921
- EvaluationId: string | undefined;
1922
- EvaluationArn: string | undefined;
1923
- }
1924
- export interface StartContactMediaProcessingRequest {
1925
- InstanceId?: string | undefined;
1926
- ContactId?: string | undefined;
1927
- ProcessorArn?: string | undefined;
1928
- FailureMode?: ContactMediaProcessingFailureMode | undefined;
1929
- }
1930
- export interface StartContactMediaProcessingResponse {}
1931
- export interface VoiceRecordingConfiguration {
1932
- VoiceRecordingTrack?: VoiceRecordingTrack | undefined;
1933
- IvrRecordingTrack?: IvrRecordingTrack | undefined;
1934
- }
@@ -9,6 +9,7 @@ import {
9
9
  ContactFlowStatus,
10
10
  ContactFlowType,
11
11
  ContactInitiationMethod,
12
+ ContactMediaProcessingFailureMode,
12
13
  ContactRecordingType,
13
14
  DataTableAttributeValueType,
14
15
  DataTableLockLevel,
@@ -22,6 +23,7 @@ import {
22
23
  InitiateAs,
23
24
  InstanceAttributeType,
24
25
  InstanceStorageResourceType,
26
+ IvrRecordingTrack,
25
27
  MeetingFeatureStatus,
26
28
  OverrideType,
27
29
  ParticipantTimerAction,
@@ -36,6 +38,7 @@ import {
36
38
  ViewStatus,
37
39
  ViewType,
38
40
  Visibility,
41
+ VoiceRecordingTrack,
39
42
  } from "./enums";
40
43
  import {
41
44
  AdditionalEmailRecipients,
@@ -51,6 +54,7 @@ import {
51
54
  EvaluationFormQuestionTypeProperties,
52
55
  EvaluationFormScoringStrategy,
53
56
  EvaluationFormTargetConfiguration,
57
+ EvaluationReviewConfiguration,
54
58
  GranularAccessControlConfiguration,
55
59
  InputPredefinedAttributeConfiguration,
56
60
  InstanceStorageConfig,
@@ -107,6 +111,7 @@ import {
107
111
  RecordingInfo,
108
112
  } from "./models_1";
109
113
  import {
114
+ AutoEvaluationConfiguration,
110
115
  BooleanCondition,
111
116
  ChatMessage,
112
117
  ChatStreamingConfiguration,
@@ -139,11 +144,33 @@ import {
139
144
  UserHierarchyGroupSearchFilter,
140
145
  UserSearchFilter,
141
146
  ViewSearchFilter,
142
- VoiceRecordingConfiguration,
143
147
  WorkspaceAssociationSearchFilter,
144
148
  WorkspaceSearchFilter,
145
149
  EmailAddressInfo,
146
150
  } from "./models_2";
151
+ export interface StartContactEvaluationRequest {
152
+ InstanceId: string | undefined;
153
+ ContactId: string | undefined;
154
+ EvaluationFormId: string | undefined;
155
+ AutoEvaluationConfiguration?: AutoEvaluationConfiguration | undefined;
156
+ ClientToken?: string | undefined;
157
+ Tags?: Record<string, string> | undefined;
158
+ }
159
+ export interface StartContactEvaluationResponse {
160
+ EvaluationId: string | undefined;
161
+ EvaluationArn: string | undefined;
162
+ }
163
+ export interface StartContactMediaProcessingRequest {
164
+ InstanceId?: string | undefined;
165
+ ContactId?: string | undefined;
166
+ ProcessorArn?: string | undefined;
167
+ FailureMode?: ContactMediaProcessingFailureMode | undefined;
168
+ }
169
+ export interface StartContactMediaProcessingResponse {}
170
+ export interface VoiceRecordingConfiguration {
171
+ VoiceRecordingTrack?: VoiceRecordingTrack | undefined;
172
+ IvrRecordingTrack?: IvrRecordingTrack | undefined;
173
+ }
147
174
  export interface StartContactRecordingRequest {
148
175
  InstanceId: string | undefined;
149
176
  ContactId: string | undefined;
@@ -1342,6 +1369,7 @@ export interface CreateEvaluationFormRequest {
1342
1369
  ClientToken?: string | undefined;
1343
1370
  AsDraft?: boolean | undefined;
1344
1371
  Tags?: Record<string, string> | undefined;
1372
+ ReviewConfiguration?: EvaluationReviewConfiguration | undefined;
1345
1373
  TargetConfiguration?: EvaluationFormTargetConfiguration | undefined;
1346
1374
  LanguageConfiguration?: EvaluationFormLanguageConfiguration | undefined;
1347
1375
  }
@@ -1362,6 +1390,7 @@ export interface EvaluationForm {
1362
1390
  AutoEvaluationConfiguration?:
1363
1391
  | EvaluationFormAutoEvaluationConfiguration
1364
1392
  | undefined;
1393
+ ReviewConfiguration?: EvaluationReviewConfiguration | undefined;
1365
1394
  Tags?: Record<string, string> | undefined;
1366
1395
  TargetConfiguration?: EvaluationFormTargetConfiguration | undefined;
1367
1396
  LanguageConfiguration?: EvaluationFormLanguageConfiguration | undefined;
@@ -1379,6 +1408,7 @@ export interface EvaluationFormContent {
1379
1408
  | undefined;
1380
1409
  TargetConfiguration?: EvaluationFormTargetConfiguration | undefined;
1381
1410
  LanguageConfiguration?: EvaluationFormLanguageConfiguration | undefined;
1411
+ ReviewConfiguration?: EvaluationReviewConfiguration | undefined;
1382
1412
  }
1383
1413
  export interface UpdateContactRoutingDataRequest {
1384
1414
  InstanceId: string | undefined;
@@ -1399,6 +1429,7 @@ export interface UpdateEvaluationFormRequest {
1399
1429
  AutoEvaluationConfiguration?:
1400
1430
  | EvaluationFormAutoEvaluationConfiguration
1401
1431
  | undefined;
1432
+ ReviewConfiguration?: EvaluationReviewConfiguration | undefined;
1402
1433
  AsDraft?: boolean | undefined;
1403
1434
  ClientToken?: string | undefined;
1404
1435
  TargetConfiguration?: EvaluationFormTargetConfiguration | undefined;
@@ -457,6 +457,11 @@ export declare var EvaluationGenAIAnswerAnalysisDetails$: StaticStructureSchema;
457
457
  export declare var EvaluationMetadata$: StaticStructureSchema;
458
458
  export declare var EvaluationNote$: StaticStructureSchema;
459
459
  export declare var EvaluationQuestionInputDetails$: StaticStructureSchema;
460
+ export declare var EvaluationReviewConfiguration$: StaticStructureSchema;
461
+ export declare var EvaluationReviewMetadata$: StaticStructureSchema;
462
+ export declare var EvaluationReviewNotificationRecipient$: StaticStructureSchema;
463
+ export declare var EvaluationReviewNotificationRecipientValue$: StaticStructureSchema;
464
+ export declare var EvaluationReviewRequestComment$: StaticStructureSchema;
460
465
  export declare var EvaluationScore$: StaticStructureSchema;
461
466
  export declare var EvaluationSearchCriteria$: StaticStructureSchema;
462
467
  export declare var EvaluationSearchFilter$: StaticStructureSchema;
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.970.0",
4
+ "version": "3.971.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connect",
@@ -22,7 +22,7 @@
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
24
  "@aws-sdk/core": "3.970.0",
25
- "@aws-sdk/credential-provider-node": "3.970.0",
25
+ "@aws-sdk/credential-provider-node": "3.971.0",
26
26
  "@aws-sdk/middleware-host-header": "3.969.0",
27
27
  "@aws-sdk/middleware-logger": "3.969.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.969.0",
@@ -31,7 +31,7 @@
31
31
  "@aws-sdk/types": "3.969.0",
32
32
  "@aws-sdk/util-endpoints": "3.970.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.969.0",
34
- "@aws-sdk/util-user-agent-node": "3.970.0",
34
+ "@aws-sdk/util-user-agent-node": "3.971.0",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
36
  "@smithy/core": "^3.20.6",
37
37
  "@smithy/fetch-http-handler": "^5.3.9",