@aws-sdk/client-connect 3.1110.0 → 3.1112.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 (86) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +206 -9
  3. package/dist-es/Connect.js +12 -0
  4. package/dist-es/commands/CreateExtractionDefinitionCommand.js +4 -0
  5. package/dist-es/commands/DeleteExtractionDefinitionCommand.js +4 -0
  6. package/dist-es/commands/DescribeExtractionDefinitionCommand.js +4 -0
  7. package/dist-es/commands/ListExtractionDefinitionsCommand.js +4 -0
  8. package/dist-es/commands/UpdateExtractionDefinitionCommand.js +4 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +7 -0
  11. package/dist-es/pagination/ListExtractionDefinitionsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +146 -8
  14. package/dist-types/Connect.d.ts +42 -0
  15. package/dist-types/ConnectClient.d.ts +7 -2
  16. package/dist-types/commands/CreateExtractionDefinitionCommand.d.ts +111 -0
  17. package/dist-types/commands/CreateRuleCommand.d.ts +9 -2
  18. package/dist-types/commands/CreateTestCaseCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateUseCaseCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteExtractionDefinitionCommand.d.ts +85 -0
  22. package/dist-types/commands/DescribeExtractionDefinitionCommand.d.ts +107 -0
  23. package/dist-types/commands/DescribeRuleCommand.d.ts +9 -2
  24. package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +1 -1
  25. package/dist-types/commands/GetCurrentUserDataCommand.d.ts +1 -2
  26. package/dist-types/commands/ListExtractionDefinitionsCommand.d.ts +98 -0
  27. package/dist-types/commands/ListRulesCommand.d.ts +3 -3
  28. package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  29. package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +1 -1
  30. package/dist-types/commands/SearchRulesCommand.d.ts +2 -2
  31. package/dist-types/commands/StartAssistantContactCommand.d.ts +4 -1
  32. package/dist-types/commands/UpdateExtractionDefinitionCommand.d.ts +100 -0
  33. package/dist-types/commands/UpdateRuleCommand.d.ts +8 -1
  34. package/dist-types/commands/UpdateViewMetadataCommand.d.ts +2 -1
  35. package/dist-types/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateWorkspacePageCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
  39. package/dist-types/commands/index.d.ts +5 -0
  40. package/dist-types/models/enums.d.ts +15 -0
  41. package/dist-types/models/models_0.d.ts +128 -188
  42. package/dist-types/models/models_1.d.ts +285 -492
  43. package/dist-types/models/models_2.d.ts +1736 -1606
  44. package/dist-types/models/models_3.d.ts +2192 -2081
  45. package/dist-types/models/models_4.d.ts +367 -7
  46. package/dist-types/pagination/ListExtractionDefinitionsPaginator.d.ts +7 -0
  47. package/dist-types/pagination/index.d.ts +1 -0
  48. package/dist-types/runtimeConfig.browser.d.ts +40 -40
  49. package/dist-types/runtimeConfig.d.ts +36 -36
  50. package/dist-types/runtimeConfig.native.d.ts +38 -38
  51. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  52. package/dist-types/schemas/schemas_0.d.ts +22 -0
  53. package/dist-types/ts3.4/Connect.d.ts +92 -0
  54. package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
  55. package/dist-types/ts3.4/commands/CreateExtractionDefinitionCommand.d.ts +42 -0
  56. package/dist-types/ts3.4/commands/CreateTestCaseCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/CreateUseCaseCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/DeleteExtractionDefinitionCommand.d.ts +42 -0
  60. package/dist-types/ts3.4/commands/DescribeExtractionDefinitionCommand.d.ts +42 -0
  61. package/dist-types/ts3.4/commands/GetCurrentMetricDataCommand.d.ts +1 -1
  62. package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +1 -2
  63. package/dist-types/ts3.4/commands/ListExtractionDefinitionsCommand.d.ts +42 -0
  64. package/dist-types/ts3.4/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  65. package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +1 -1
  66. package/dist-types/ts3.4/commands/UpdateExtractionDefinitionCommand.d.ts +42 -0
  67. package/dist-types/ts3.4/commands/UpdateViewMetadataCommand.d.ts +2 -1
  68. package/dist-types/ts3.4/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
  69. package/dist-types/ts3.4/commands/UpdateWorkspacePageCommand.d.ts +1 -1
  70. package/dist-types/ts3.4/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
  71. package/dist-types/ts3.4/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  73. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  74. package/dist-types/ts3.4/models/models_0.d.ts +31 -46
  75. package/dist-types/ts3.4/models/models_1.d.ts +72 -72
  76. package/dist-types/ts3.4/models/models_2.d.ts +89 -102
  77. package/dist-types/ts3.4/models/models_3.d.ts +112 -104
  78. package/dist-types/ts3.4/models/models_4.d.ts +109 -14
  79. package/dist-types/ts3.4/pagination/ListExtractionDefinitionsPaginator.d.ts +11 -0
  80. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  81. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +56 -58
  82. package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
  83. package/dist-types/ts3.4/runtimeConfig.native.d.ts +60 -62
  84. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
  85. package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
  86. package/package.json +5 -5
@@ -6,15 +6,13 @@ import {
6
6
  BooleanComparisonType,
7
7
  Channel,
8
8
  Comparison,
9
- ContactEvaluationAttributeComparisonType,
10
- ContactEvaluationAttributeKey,
11
9
  ContactFlowModuleState,
12
10
  ContactFlowState,
13
11
  ContactFlowStatus,
14
12
  ContactFlowType,
15
13
  ContactInitiationMethod,
16
- ContactParticipantRole,
17
14
  ContactRecordingType,
15
+ ContactState,
18
16
  DataTableAttributeValueType,
19
17
  DateTimeComparisonType,
20
18
  DecimalComparisonType,
@@ -48,7 +46,6 @@ import {
48
46
  NumberComparisonType,
49
47
  OperationalStatus,
50
48
  ParticipantRole,
51
- PerformanceCategoryName,
52
49
  PhoneNumberCountryCode,
53
50
  PhoneNumberType,
54
51
  QueueType,
@@ -81,11 +78,11 @@ import {
81
78
  AgentConfig,
82
79
  AgentContactReference,
83
80
  AgentStatus,
81
+ AgentStatusIdentifier,
84
82
  AgentStatusReference,
85
83
  AgentStatusSummary,
86
84
  AnalyticsDataAssociationResult,
87
85
  Application,
88
- ControlPlaneAttributeFilter,
89
86
  DataTableLockVersion,
90
87
  Distribution,
91
88
  FlowAssociationSummary,
@@ -95,8 +92,8 @@ import {
95
92
  LexV2Bot,
96
93
  OverrideTimeSlice,
97
94
  PrimaryValueResponse,
95
+ QueueReference,
98
96
  SecurityProfileItem,
99
- TagCondition,
100
97
  TaskTemplateConstraints,
101
98
  TaskTemplateDefaults,
102
99
  TaskTemplateField,
@@ -104,21 +101,85 @@ import {
104
101
  } from "./models_0";
105
102
  import {
106
103
  Attribute,
107
- ContactFlowModule,
104
+ CurrentMetric,
105
+ CurrentMetricSortCriteria,
108
106
  DataTableAttribute,
109
- Dimensions,
110
107
  EvaluationContactParticipant,
111
108
  EvaluationScore,
112
109
  ExtensionConfiguration,
113
110
  Filters,
114
111
  HierarchyGroupSummary,
115
- HierarchyPathReference,
116
112
  HoursOfOperationOverride,
117
113
  HoursOfOperationsIdentifier,
118
114
  Notification,
119
- RoutingProfileReference,
120
- UserReference,
121
115
  } from "./models_1";
116
+ export interface GetCurrentMetricDataRequest {
117
+ InstanceId: string | undefined;
118
+ Filters: Filters | undefined;
119
+ Groupings?: Grouping[] | undefined;
120
+ CurrentMetrics: CurrentMetric[] | undefined;
121
+ NextToken?: string | undefined;
122
+ MaxResults?: number | undefined;
123
+ SortCriteria?: CurrentMetricSortCriteria[] | undefined;
124
+ }
125
+ export interface CurrentMetricData {
126
+ Metric?: CurrentMetric | undefined;
127
+ Value?: number | undefined;
128
+ }
129
+ export interface RoutingProfileReference {
130
+ Id?: string | undefined;
131
+ Arn?: string | undefined;
132
+ }
133
+ export interface Dimensions {
134
+ Queue?: QueueReference | undefined;
135
+ Channel?: Channel | undefined;
136
+ RoutingProfile?: RoutingProfileReference | undefined;
137
+ RoutingStepExpression?: string | undefined;
138
+ AgentStatus?: AgentStatusIdentifier | undefined;
139
+ Subtype?: string | undefined;
140
+ ValidationTestType?: string | undefined;
141
+ }
142
+ export interface CurrentMetricResult {
143
+ Dimensions?: Dimensions | undefined;
144
+ Collections?: CurrentMetricData[] | undefined;
145
+ }
146
+ export interface GetCurrentMetricDataResponse {
147
+ NextToken?: string | undefined;
148
+ MetricResults?: CurrentMetricResult[] | undefined;
149
+ DataSnapshotTime?: Date | undefined;
150
+ ApproximateTotalCount?: number | undefined;
151
+ }
152
+ export interface ContactFilter {
153
+ ContactStates?: ContactState[] | undefined;
154
+ }
155
+ export interface UserDataFilters {
156
+ Queues?: string[] | undefined;
157
+ ContactFilter?: ContactFilter | undefined;
158
+ RoutingProfiles?: string[] | undefined;
159
+ Agents?: string[] | undefined;
160
+ UserHierarchyGroups?: string[] | undefined;
161
+ }
162
+ export interface GetCurrentUserDataRequest {
163
+ InstanceId: string | undefined;
164
+ Filters: UserDataFilters | undefined;
165
+ NextToken?: string | undefined;
166
+ MaxResults?: number | undefined;
167
+ }
168
+ export interface HierarchyGroupSummaryReference {
169
+ Id?: string | undefined;
170
+ Arn?: string | undefined;
171
+ }
172
+ export interface HierarchyPathReference {
173
+ LevelOne?: HierarchyGroupSummaryReference | undefined;
174
+ LevelTwo?: HierarchyGroupSummaryReference | undefined;
175
+ LevelThree?: HierarchyGroupSummaryReference | undefined;
176
+ LevelFour?: HierarchyGroupSummaryReference | undefined;
177
+ LevelFive?: HierarchyGroupSummaryReference | undefined;
178
+ }
179
+ export interface UserReference {
180
+ Id?: string | undefined;
181
+ Arn?: string | undefined;
182
+ }
122
183
  export interface UserData {
123
184
  User?: UserReference | undefined;
124
185
  RoutingProfile?: RoutingProfileReference | undefined;
@@ -971,6 +1032,23 @@ export interface ListEvaluationFormVersionsResponse {
971
1032
  EvaluationFormVersionSummaryList: EvaluationFormVersionSummary[] | undefined;
972
1033
  NextToken?: string | undefined;
973
1034
  }
1035
+ export interface ListExtractionDefinitionsRequest {
1036
+ InstanceId: string | undefined;
1037
+ MaxResults?: number | undefined;
1038
+ NextToken?: string | undefined;
1039
+ }
1040
+ export interface ExtractionDefinitionSummary {
1041
+ Name: string | undefined;
1042
+ ExtractionDefinitionId: string | undefined;
1043
+ ExtractionDefinitionArn: string | undefined;
1044
+ CreatedTime: Date | undefined;
1045
+ LastUpdatedTime: Date | undefined;
1046
+ LastUpdatedBy: string | undefined;
1047
+ }
1048
+ export interface ListExtractionDefinitionsResponse {
1049
+ ExtractionDefinitionSummaryList: ExtractionDefinitionSummary[] | undefined;
1050
+ NextToken?: string | undefined;
1051
+ }
974
1052
  export interface ListFlowAssociationsRequest {
975
1053
  InstanceId: string | undefined;
976
1054
  ResourceType?: ListFlowAssociationResourceType | undefined;
@@ -1938,94 +2016,3 @@ export interface NumberCondition {
1938
2016
  MaxValue?: number | undefined;
1939
2017
  ComparisonType?: NumberComparisonType | undefined;
1940
2018
  }
1941
- export interface ContactEvaluationAttributeValue {
1942
- StringValue?: string | undefined;
1943
- }
1944
- export interface ContactEvaluationAttributeCondition {
1945
- AttributeKey?: ContactEvaluationAttributeKey | undefined;
1946
- AttributeValue?: ContactEvaluationAttributeValue | undefined;
1947
- ComparisonType?: ContactEvaluationAttributeComparisonType | undefined;
1948
- }
1949
- export interface ContactEvaluationAttributeAndCondition {
1950
- TagConditions?: TagCondition[] | undefined;
1951
- AttributeConditions?: ContactEvaluationAttributeCondition[] | undefined;
1952
- }
1953
- export interface ContactEvaluationAttributeFilter {
1954
- OrConditions?: ContactEvaluationAttributeAndCondition[] | undefined;
1955
- AndCondition?: ContactEvaluationAttributeAndCondition | undefined;
1956
- TagCondition?: TagCondition | undefined;
1957
- ContactEvaluationAttributeCondition?: ContactEvaluationAttributeCondition | undefined;
1958
- }
1959
- export interface EvaluationSearchFilter {
1960
- AttributeFilter?: ControlPlaneAttributeFilter | undefined;
1961
- ContactEvaluationAttributeFilter?: ContactEvaluationAttributeFilter | undefined;
1962
- }
1963
- export interface EvaluationSearchMetadata {
1964
- ContactId: string | undefined;
1965
- EvaluatorArn: string | undefined;
1966
- ContactAgentId?: string | undefined;
1967
- CalibrationSessionId?: string | undefined;
1968
- ScorePercentage?: number | undefined;
1969
- ScoreAutomaticFail?: boolean | undefined;
1970
- ScoreNotApplicable?: boolean | undefined;
1971
- AutoEvaluationEnabled?: boolean | undefined;
1972
- AutoEvaluationStatus?: AutoEvaluationStatus | undefined;
1973
- AcknowledgedTime?: Date | undefined;
1974
- AcknowledgedBy?: string | undefined;
1975
- AcknowledgerComment?: string | undefined;
1976
- SamplingJobId?: string | undefined;
1977
- ReviewId?: string | undefined;
1978
- ContactParticipantRole?: ContactParticipantRole | undefined;
1979
- ContactParticipantId?: string | undefined;
1980
- EarnedPoints?: number | undefined;
1981
- MaxBasePoint?: number | undefined;
1982
- PerformanceCategory?: PerformanceCategoryName | undefined;
1983
- }
1984
- export interface EvaluationSearchSummary {
1985
- EvaluationId: string | undefined;
1986
- EvaluationArn: string | undefined;
1987
- EvaluationFormId?: string | undefined;
1988
- EvaluationFormVersion: number | undefined;
1989
- EvaluationFormTitle?: string | undefined;
1990
- Metadata: EvaluationSearchMetadata | undefined;
1991
- Status: EvaluationStatus | undefined;
1992
- EvaluationType?: EvaluationType | undefined;
1993
- CreatedTime: Date | undefined;
1994
- LastModifiedTime: Date | undefined;
1995
- Tags?: Record<string, string> | undefined;
1996
- }
1997
- export interface SearchContactEvaluationsResponse {
1998
- EvaluationSearchSummaryList?: EvaluationSearchSummary[] | undefined;
1999
- NextToken?: string | undefined;
2000
- ApproximateTotalCount?: number | undefined;
2001
- }
2002
- export interface ControlPlaneTagFilter {
2003
- OrConditions?: TagCondition[][] | undefined;
2004
- AndConditions?: TagCondition[] | undefined;
2005
- TagCondition?: TagCondition | undefined;
2006
- }
2007
- export interface ContactFlowModuleSearchFilter {
2008
- TagFilter?: ControlPlaneTagFilter | undefined;
2009
- }
2010
- export interface SearchContactFlowModulesResponse {
2011
- ContactFlowModules?: ContactFlowModule[] | undefined;
2012
- NextToken?: string | undefined;
2013
- ApproximateTotalCount?: number | undefined;
2014
- }
2015
- export interface ContactFlowTypeCondition {
2016
- ContactFlowType?: ContactFlowType | undefined;
2017
- }
2018
- export interface ContactFlowAttributeAndCondition {
2019
- TagConditions?: TagCondition[] | undefined;
2020
- ContactFlowTypeCondition?: ContactFlowTypeCondition | undefined;
2021
- }
2022
- export interface ContactFlowAttributeFilter {
2023
- OrConditions?: ContactFlowAttributeAndCondition[] | undefined;
2024
- AndCondition?: ContactFlowAttributeAndCondition | undefined;
2025
- TagCondition?: TagCondition | undefined;
2026
- ContactFlowTypeCondition?: ContactFlowTypeCondition | undefined;
2027
- }
2028
- export interface ContactFlowSearchFilter {
2029
- TagFilter?: ControlPlaneTagFilter | undefined;
2030
- FlowAttributeFilter?: ContactFlowAttributeFilter | undefined;
2031
- }
@@ -4,26 +4,28 @@ import {
4
4
  AiUseCase,
5
5
  AnalyticsMode,
6
6
  AttachmentScope,
7
+ AutoEvaluationStatus,
7
8
  Behavior,
8
9
  Channel,
9
10
  ChatEventType,
11
+ ContactEvaluationAttributeComparisonType,
12
+ ContactEvaluationAttributeKey,
10
13
  ContactFlowModuleState,
11
- ContactFlowModuleStatus,
12
14
  ContactFlowState,
13
- ContactFlowStatus,
14
15
  ContactFlowType,
15
16
  ContactInitiationMethod,
16
17
  ContactInteractionType,
17
18
  ContactMediaProcessingFailureMode,
19
+ ContactParticipantRole,
18
20
  ContactRecordingType,
19
21
  DataTableAttributeValueType,
20
22
  DataTableLockLevel,
21
23
  DateComparisonType,
22
24
  EmailHeaderType,
23
- EvaluationFormItemEnablementAction,
24
- EvaluationFormItemEnablementOperator,
25
25
  EvaluationFormLanguageCode,
26
26
  EvaluationFormVersionStatus,
27
+ EvaluationStatus,
28
+ EvaluationType,
27
29
  FileStatusType,
28
30
  FileUseCaseType,
29
31
  HierarchyGroupMatchType,
@@ -43,6 +45,7 @@ import {
43
45
  ParticipantRole,
44
46
  ParticipantTimerAction,
45
47
  ParticipantTimerType,
48
+ PerformanceCategoryName,
46
49
  Policy,
47
50
  QueueStatus,
48
51
  RehydrationType,
@@ -81,7 +84,8 @@ import {
81
84
  ControlPlaneAttributeFilter,
82
85
  CreatedByInfo,
83
86
  DataTableLockVersion,
84
- EvaluationFormItemEnablementExpression,
87
+ ExtractionConfiguration,
88
+ ExtractionDefinitionDisplay,
85
89
  FlowModule,
86
90
  GranularAccessControlConfiguration,
87
91
  HoursOfOperationConfig,
@@ -106,13 +110,13 @@ import {
106
110
  TaskTemplateConstraints,
107
111
  TaskTemplateDefaults,
108
112
  TaskTemplateField,
109
- TestCaseEntryPoint,
110
113
  UserProficiency,
111
114
  Validation,
112
115
  } from "./models_0";
113
116
  import {
114
117
  AutoAcceptConfig,
115
118
  ContactFlow,
119
+ ContactFlowModule,
116
120
  DataTable,
117
121
  EvaluationAnswerData,
118
122
  EvaluationNote,
@@ -129,14 +133,105 @@ import {
129
133
  QuickConnect,
130
134
  RoutingProfile,
131
135
  TestCase,
136
+ TestCaseEntryPoint,
132
137
  UserIdentityInfo,
133
138
  UserPhoneConfig,
134
139
  View,
135
140
  ViewInputContent,
136
141
  VoiceEnhancementConfig,
137
- WorkspaceTheme,
138
142
  } from "./models_1";
139
- import { ControlPlaneTagFilter, NumberCondition, SignInConfig, TelephonyConfig } from "./models_2";
143
+ import { NumberCondition, SignInConfig, TelephonyConfig } from "./models_2";
144
+ export interface ContactEvaluationAttributeValue {
145
+ StringValue?: string | undefined;
146
+ }
147
+ export interface ContactEvaluationAttributeCondition {
148
+ AttributeKey?: ContactEvaluationAttributeKey | undefined;
149
+ AttributeValue?: ContactEvaluationAttributeValue | undefined;
150
+ ComparisonType?: ContactEvaluationAttributeComparisonType | undefined;
151
+ }
152
+ export interface ContactEvaluationAttributeAndCondition {
153
+ TagConditions?: TagCondition[] | undefined;
154
+ AttributeConditions?: ContactEvaluationAttributeCondition[] | undefined;
155
+ }
156
+ export interface ContactEvaluationAttributeFilter {
157
+ OrConditions?: ContactEvaluationAttributeAndCondition[] | undefined;
158
+ AndCondition?: ContactEvaluationAttributeAndCondition | undefined;
159
+ TagCondition?: TagCondition | undefined;
160
+ ContactEvaluationAttributeCondition?: ContactEvaluationAttributeCondition | undefined;
161
+ }
162
+ export interface EvaluationSearchFilter {
163
+ AttributeFilter?: ControlPlaneAttributeFilter | undefined;
164
+ ContactEvaluationAttributeFilter?: ContactEvaluationAttributeFilter | undefined;
165
+ }
166
+ export interface EvaluationSearchMetadata {
167
+ ContactId: string | undefined;
168
+ EvaluatorArn: string | undefined;
169
+ ContactAgentId?: string | undefined;
170
+ CalibrationSessionId?: string | undefined;
171
+ ScorePercentage?: number | undefined;
172
+ ScoreAutomaticFail?: boolean | undefined;
173
+ ScoreNotApplicable?: boolean | undefined;
174
+ AutoEvaluationEnabled?: boolean | undefined;
175
+ AutoEvaluationStatus?: AutoEvaluationStatus | undefined;
176
+ AcknowledgedTime?: Date | undefined;
177
+ AcknowledgedBy?: string | undefined;
178
+ AcknowledgerComment?: string | undefined;
179
+ SamplingJobId?: string | undefined;
180
+ ReviewId?: string | undefined;
181
+ ContactParticipantRole?: ContactParticipantRole | undefined;
182
+ ContactParticipantId?: string | undefined;
183
+ EarnedPoints?: number | undefined;
184
+ MaxBasePoint?: number | undefined;
185
+ PerformanceCategory?: PerformanceCategoryName | undefined;
186
+ }
187
+ export interface EvaluationSearchSummary {
188
+ EvaluationId: string | undefined;
189
+ EvaluationArn: string | undefined;
190
+ EvaluationFormId?: string | undefined;
191
+ EvaluationFormVersion: number | undefined;
192
+ EvaluationFormTitle?: string | undefined;
193
+ Metadata: EvaluationSearchMetadata | undefined;
194
+ Status: EvaluationStatus | undefined;
195
+ EvaluationType?: EvaluationType | undefined;
196
+ CreatedTime: Date | undefined;
197
+ LastModifiedTime: Date | undefined;
198
+ Tags?: Record<string, string> | undefined;
199
+ }
200
+ export interface SearchContactEvaluationsResponse {
201
+ EvaluationSearchSummaryList?: EvaluationSearchSummary[] | undefined;
202
+ NextToken?: string | undefined;
203
+ ApproximateTotalCount?: number | undefined;
204
+ }
205
+ export interface ControlPlaneTagFilter {
206
+ OrConditions?: TagCondition[][] | undefined;
207
+ AndConditions?: TagCondition[] | undefined;
208
+ TagCondition?: TagCondition | undefined;
209
+ }
210
+ export interface ContactFlowModuleSearchFilter {
211
+ TagFilter?: ControlPlaneTagFilter | undefined;
212
+ }
213
+ export interface SearchContactFlowModulesResponse {
214
+ ContactFlowModules?: ContactFlowModule[] | undefined;
215
+ NextToken?: string | undefined;
216
+ ApproximateTotalCount?: number | undefined;
217
+ }
218
+ export interface ContactFlowTypeCondition {
219
+ ContactFlowType?: ContactFlowType | undefined;
220
+ }
221
+ export interface ContactFlowAttributeAndCondition {
222
+ TagConditions?: TagCondition[] | undefined;
223
+ ContactFlowTypeCondition?: ContactFlowTypeCondition | undefined;
224
+ }
225
+ export interface ContactFlowAttributeFilter {
226
+ OrConditions?: ContactFlowAttributeAndCondition[] | undefined;
227
+ AndCondition?: ContactFlowAttributeAndCondition | undefined;
228
+ TagCondition?: TagCondition | undefined;
229
+ ContactFlowTypeCondition?: ContactFlowTypeCondition | undefined;
230
+ }
231
+ export interface ContactFlowSearchFilter {
232
+ TagFilter?: ControlPlaneTagFilter | undefined;
233
+ FlowAttributeFilter?: ContactFlowAttributeFilter | undefined;
234
+ }
140
235
  export interface SearchContactFlowsResponse {
141
236
  ContactFlows?: ContactFlow[] | undefined;
142
237
  NextToken?: string | undefined;
@@ -1209,6 +1304,15 @@ export interface UpdateEvaluationFormResponse {
1209
1304
  EvaluationFormArn: string | undefined;
1210
1305
  EvaluationFormVersion: number | undefined;
1211
1306
  }
1307
+ export interface UpdateExtractionDefinitionRequest {
1308
+ ClientToken?: string | undefined;
1309
+ ExtractionDefinitionId: string | undefined;
1310
+ InstanceId: string | undefined;
1311
+ Name: string | undefined;
1312
+ ExtractionConfiguration: ExtractionConfiguration | undefined;
1313
+ Display?: ExtractionDefinitionDisplay | undefined;
1314
+ }
1315
+ export interface UpdateExtractionDefinitionResponse {}
1212
1316
  export interface UpdateHoursOfOperationRequest {
1213
1317
  InstanceId: string | undefined;
1214
1318
  HoursOfOperationId: string | undefined;
@@ -1579,99 +1683,3 @@ export interface UpdateViewMetadataRequest {
1579
1683
  Name?: string | undefined;
1580
1684
  Description?: string | undefined;
1581
1685
  }
1582
- export interface UpdateViewMetadataResponse {}
1583
- export interface UpdateWorkspaceMetadataRequest {
1584
- InstanceId: string | undefined;
1585
- WorkspaceId: string | undefined;
1586
- Name?: string | undefined;
1587
- Description?: string | undefined;
1588
- Title?: string | undefined;
1589
- }
1590
- export interface UpdateWorkspaceMetadataResponse {}
1591
- export interface UpdateWorkspacePageRequest {
1592
- InstanceId: string | undefined;
1593
- WorkspaceId: string | undefined;
1594
- Page: string | undefined;
1595
- NewPage?: string | undefined;
1596
- ResourceArn?: string | undefined;
1597
- Slug?: string | undefined;
1598
- InputData?: string | undefined;
1599
- }
1600
- export interface UpdateWorkspacePageResponse {}
1601
- export interface UpdateWorkspaceThemeRequest {
1602
- InstanceId: string | undefined;
1603
- WorkspaceId: string | undefined;
1604
- Theme?: WorkspaceTheme | undefined;
1605
- }
1606
- export interface UpdateWorkspaceThemeResponse {}
1607
- export interface UpdateWorkspaceVisibilityRequest {
1608
- InstanceId: string | undefined;
1609
- WorkspaceId: string | undefined;
1610
- Visibility: Visibility | undefined;
1611
- }
1612
- export interface UpdateWorkspaceVisibilityResponse {}
1613
- export interface EvaluationFormItemEnablementCondition {
1614
- Operands: EvaluationFormItemEnablementConditionOperand[] | undefined;
1615
- Operator?: EvaluationFormItemEnablementOperator | undefined;
1616
- }
1617
- export type EvaluationFormItemEnablementConditionOperand =
1618
- | EvaluationFormItemEnablementConditionOperand.ConditionMember
1619
- | EvaluationFormItemEnablementConditionOperand.ExpressionMember
1620
- | EvaluationFormItemEnablementConditionOperand.$UnknownMember;
1621
- export declare namespace EvaluationFormItemEnablementConditionOperand {
1622
- interface ExpressionMember {
1623
- Expression: EvaluationFormItemEnablementExpression;
1624
- Condition?: never;
1625
- $unknown?: never;
1626
- }
1627
- interface ConditionMember {
1628
- Expression?: never;
1629
- Condition: EvaluationFormItemEnablementCondition;
1630
- $unknown?: never;
1631
- }
1632
- interface $UnknownMember {
1633
- Expression?: never;
1634
- Condition?: never;
1635
- $unknown: [string, any];
1636
- }
1637
- interface Visitor<T> {
1638
- Expression: (value: EvaluationFormItemEnablementExpression) => T;
1639
- Condition: (value: EvaluationFormItemEnablementCondition) => T;
1640
- _: (name: string, value: any) => T;
1641
- }
1642
- }
1643
- export interface AgentStatusSearchCriteria {
1644
- OrConditions?: AgentStatusSearchCriteria[] | undefined;
1645
- AndConditions?: AgentStatusSearchCriteria[] | undefined;
1646
- StringCondition?: StringCondition | undefined;
1647
- }
1648
- export interface ContactFlowModuleSearchCriteria {
1649
- OrConditions?: ContactFlowModuleSearchCriteria[] | undefined;
1650
- AndConditions?: ContactFlowModuleSearchCriteria[] | undefined;
1651
- StringCondition?: StringCondition | undefined;
1652
- StateCondition?: ContactFlowModuleState | undefined;
1653
- StatusCondition?: ContactFlowModuleStatus | undefined;
1654
- }
1655
- export interface ContactFlowSearchCriteria {
1656
- OrConditions?: ContactFlowSearchCriteria[] | undefined;
1657
- AndConditions?: ContactFlowSearchCriteria[] | undefined;
1658
- StringCondition?: StringCondition | undefined;
1659
- TypeCondition?: ContactFlowType | undefined;
1660
- StateCondition?: ContactFlowState | undefined;
1661
- StatusCondition?: ContactFlowStatus | undefined;
1662
- }
1663
- export interface DataTableSearchCriteria {
1664
- OrConditions?: DataTableSearchCriteria[] | undefined;
1665
- AndConditions?: DataTableSearchCriteria[] | undefined;
1666
- StringCondition?: StringCondition | undefined;
1667
- }
1668
- export interface EmailAddressSearchCriteria {
1669
- OrConditions?: EmailAddressSearchCriteria[] | undefined;
1670
- AndConditions?: EmailAddressSearchCriteria[] | undefined;
1671
- StringCondition?: StringCondition | undefined;
1672
- }
1673
- export interface EvaluationFormItemEnablementConfiguration {
1674
- Condition: EvaluationFormItemEnablementCondition | undefined;
1675
- Action: EvaluationFormItemEnablementAction | undefined;
1676
- DefaultAction?: EvaluationFormItemEnablementAction | undefined;
1677
- }