@aws-sdk/client-connect 3.1111.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.
- package/README.md +35 -0
- package/dist-cjs/index.js +206 -9
- package/dist-es/Connect.js +12 -0
- package/dist-es/commands/CreateExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/DeleteExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/DescribeExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/ListExtractionDefinitionsCommand.js +4 -0
- package/dist-es/commands/UpdateExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +7 -0
- package/dist-es/pagination/ListExtractionDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +146 -8
- package/dist-types/Connect.d.ts +42 -0
- package/dist-types/ConnectClient.d.ts +7 -2
- package/dist-types/commands/CreateExtractionDefinitionCommand.d.ts +111 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +9 -2
- package/dist-types/commands/CreateTestCaseCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateUseCaseCommand.d.ts +1 -1
- package/dist-types/commands/DeleteExtractionDefinitionCommand.d.ts +85 -0
- package/dist-types/commands/DescribeExtractionDefinitionCommand.d.ts +107 -0
- package/dist-types/commands/DescribeRuleCommand.d.ts +9 -2
- package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +1 -1
- package/dist-types/commands/GetCurrentUserDataCommand.d.ts +1 -2
- package/dist-types/commands/ListExtractionDefinitionsCommand.d.ts +98 -0
- package/dist-types/commands/ListRulesCommand.d.ts +3 -3
- package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/commands/SearchRulesCommand.d.ts +2 -2
- package/dist-types/commands/StartAssistantContactCommand.d.ts +4 -1
- package/dist-types/commands/UpdateExtractionDefinitionCommand.d.ts +100 -0
- package/dist-types/commands/UpdateRuleCommand.d.ts +8 -1
- package/dist-types/commands/UpdateViewMetadataCommand.d.ts +2 -1
- package/dist-types/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspacePageCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +15 -0
- package/dist-types/models/models_0.d.ts +128 -188
- package/dist-types/models/models_1.d.ts +285 -492
- package/dist-types/models/models_2.d.ts +1736 -1606
- package/dist-types/models/models_3.d.ts +2192 -2081
- package/dist-types/models/models_4.d.ts +367 -7
- package/dist-types/pagination/ListExtractionDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/Connect.d.ts +92 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTestCaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUseCaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetCurrentMetricDataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListExtractionDefinitionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateViewMetadataCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspacePageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +31 -46
- package/dist-types/ts3.4/models/models_1.d.ts +72 -72
- package/dist-types/ts3.4/models/models_2.d.ts +89 -102
- package/dist-types/ts3.4/models/models_3.d.ts +112 -104
- package/dist-types/ts3.4/models/models_4.d.ts +109 -14
- package/dist-types/ts3.4/pagination/ListExtractionDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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 {
|
|
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
|
-
}
|
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AnsweringMachineDetectionStatus,
|
|
3
3
|
Channel,
|
|
4
|
+
ContactFlowModuleState,
|
|
5
|
+
ContactFlowModuleStatus,
|
|
6
|
+
ContactFlowState,
|
|
7
|
+
ContactFlowStatus,
|
|
8
|
+
ContactFlowType,
|
|
4
9
|
ContactInitiationMethod,
|
|
5
10
|
DisconnectOnCustomerExitParticipantType,
|
|
11
|
+
EvaluationFormItemEnablementAction,
|
|
12
|
+
EvaluationFormItemEnablementOperator,
|
|
6
13
|
EvaluationFormQuestionType,
|
|
7
14
|
EvaluationFormValidationStatus,
|
|
8
15
|
EvaluationFormVersionStatus,
|
|
@@ -12,6 +19,7 @@ import {
|
|
|
12
19
|
TestCaseStatus,
|
|
13
20
|
ViewStatus,
|
|
14
21
|
ViewType,
|
|
22
|
+
Visibility,
|
|
15
23
|
} from "./enums";
|
|
16
24
|
import {
|
|
17
25
|
AdditionalEmailRecipients,
|
|
@@ -21,6 +29,7 @@ import {
|
|
|
21
29
|
Campaign,
|
|
22
30
|
Endpoint,
|
|
23
31
|
EvaluationFormAutoEvaluationConfiguration,
|
|
32
|
+
EvaluationFormItemEnablementExpression,
|
|
24
33
|
EvaluationFormLanguageConfiguration,
|
|
25
34
|
EvaluationFormQuestionScoringConfiguration,
|
|
26
35
|
EvaluationFormQuestionTypeProperties,
|
|
@@ -51,33 +60,23 @@ import {
|
|
|
51
60
|
RecordingInfo,
|
|
52
61
|
TaskTemplateInfoV2,
|
|
53
62
|
WisdomInfo,
|
|
63
|
+
WorkspaceTheme,
|
|
54
64
|
} from "./models_1";
|
|
65
|
+
import { BooleanCondition, DateTimeCondition, DecimalCondition, NumberCondition } from "./models_2";
|
|
55
66
|
import {
|
|
56
|
-
|
|
67
|
+
ChatMessage,
|
|
57
68
|
ContactFlowModuleSearchFilter,
|
|
58
69
|
ContactFlowSearchFilter,
|
|
59
|
-
DateTimeCondition,
|
|
60
|
-
DecimalCondition,
|
|
61
|
-
EvaluationSearchFilter,
|
|
62
|
-
NumberCondition,
|
|
63
|
-
} from "./models_2";
|
|
64
|
-
import {
|
|
65
|
-
AgentStatusSearchCriteria,
|
|
66
|
-
ChatMessage,
|
|
67
|
-
ContactFlowModuleSearchCriteria,
|
|
68
|
-
ContactFlowSearchCriteria,
|
|
69
70
|
ContactSearchSummaryAgentInfo,
|
|
70
71
|
ContactSearchSummaryAiAgentInfo,
|
|
71
72
|
ContactSearchSummaryQueueInfo,
|
|
72
|
-
DataTableSearchCriteria,
|
|
73
73
|
DataTableSearchFilter,
|
|
74
74
|
DateCondition,
|
|
75
75
|
EmailAddressInfo,
|
|
76
|
-
EmailAddressSearchCriteria,
|
|
77
76
|
EmailAddressSearchFilter,
|
|
78
77
|
EmailAttachment,
|
|
79
|
-
EvaluationFormItemEnablementConfiguration,
|
|
80
78
|
EvaluationFormSearchFilter,
|
|
79
|
+
EvaluationSearchFilter,
|
|
81
80
|
HierarchyGroupCondition,
|
|
82
81
|
HoursOfOperationSearchFilter,
|
|
83
82
|
InboundAdditionalRecipients,
|
|
@@ -105,6 +104,102 @@ import {
|
|
|
105
104
|
WorkspaceAssociationSearchFilter,
|
|
106
105
|
WorkspaceSearchFilter,
|
|
107
106
|
} from "./models_3";
|
|
107
|
+
export interface UpdateViewMetadataResponse {}
|
|
108
|
+
export interface UpdateWorkspaceMetadataRequest {
|
|
109
|
+
InstanceId: string | undefined;
|
|
110
|
+
WorkspaceId: string | undefined;
|
|
111
|
+
Name?: string | undefined;
|
|
112
|
+
Description?: string | undefined;
|
|
113
|
+
Title?: string | undefined;
|
|
114
|
+
}
|
|
115
|
+
export interface UpdateWorkspaceMetadataResponse {}
|
|
116
|
+
export interface UpdateWorkspacePageRequest {
|
|
117
|
+
InstanceId: string | undefined;
|
|
118
|
+
WorkspaceId: string | undefined;
|
|
119
|
+
Page: string | undefined;
|
|
120
|
+
NewPage?: string | undefined;
|
|
121
|
+
ResourceArn?: string | undefined;
|
|
122
|
+
Slug?: string | undefined;
|
|
123
|
+
InputData?: string | undefined;
|
|
124
|
+
}
|
|
125
|
+
export interface UpdateWorkspacePageResponse {}
|
|
126
|
+
export interface UpdateWorkspaceThemeRequest {
|
|
127
|
+
InstanceId: string | undefined;
|
|
128
|
+
WorkspaceId: string | undefined;
|
|
129
|
+
Theme?: WorkspaceTheme | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface UpdateWorkspaceThemeResponse {}
|
|
132
|
+
export interface UpdateWorkspaceVisibilityRequest {
|
|
133
|
+
InstanceId: string | undefined;
|
|
134
|
+
WorkspaceId: string | undefined;
|
|
135
|
+
Visibility: Visibility | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface UpdateWorkspaceVisibilityResponse {}
|
|
138
|
+
export interface EvaluationFormItemEnablementCondition {
|
|
139
|
+
Operands: EvaluationFormItemEnablementConditionOperand[] | undefined;
|
|
140
|
+
Operator?: EvaluationFormItemEnablementOperator | undefined;
|
|
141
|
+
}
|
|
142
|
+
export type EvaluationFormItemEnablementConditionOperand =
|
|
143
|
+
| EvaluationFormItemEnablementConditionOperand.ConditionMember
|
|
144
|
+
| EvaluationFormItemEnablementConditionOperand.ExpressionMember
|
|
145
|
+
| EvaluationFormItemEnablementConditionOperand.$UnknownMember;
|
|
146
|
+
export declare namespace EvaluationFormItemEnablementConditionOperand {
|
|
147
|
+
interface ExpressionMember {
|
|
148
|
+
Expression: EvaluationFormItemEnablementExpression;
|
|
149
|
+
Condition?: never;
|
|
150
|
+
$unknown?: never;
|
|
151
|
+
}
|
|
152
|
+
interface ConditionMember {
|
|
153
|
+
Expression?: never;
|
|
154
|
+
Condition: EvaluationFormItemEnablementCondition;
|
|
155
|
+
$unknown?: never;
|
|
156
|
+
}
|
|
157
|
+
interface $UnknownMember {
|
|
158
|
+
Expression?: never;
|
|
159
|
+
Condition?: never;
|
|
160
|
+
$unknown: [string, any];
|
|
161
|
+
}
|
|
162
|
+
interface Visitor<T> {
|
|
163
|
+
Expression: (value: EvaluationFormItemEnablementExpression) => T;
|
|
164
|
+
Condition: (value: EvaluationFormItemEnablementCondition) => T;
|
|
165
|
+
_: (name: string, value: any) => T;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
export interface AgentStatusSearchCriteria {
|
|
169
|
+
OrConditions?: AgentStatusSearchCriteria[] | undefined;
|
|
170
|
+
AndConditions?: AgentStatusSearchCriteria[] | undefined;
|
|
171
|
+
StringCondition?: StringCondition | undefined;
|
|
172
|
+
}
|
|
173
|
+
export interface ContactFlowModuleSearchCriteria {
|
|
174
|
+
OrConditions?: ContactFlowModuleSearchCriteria[] | undefined;
|
|
175
|
+
AndConditions?: ContactFlowModuleSearchCriteria[] | undefined;
|
|
176
|
+
StringCondition?: StringCondition | undefined;
|
|
177
|
+
StateCondition?: ContactFlowModuleState | undefined;
|
|
178
|
+
StatusCondition?: ContactFlowModuleStatus | undefined;
|
|
179
|
+
}
|
|
180
|
+
export interface ContactFlowSearchCriteria {
|
|
181
|
+
OrConditions?: ContactFlowSearchCriteria[] | undefined;
|
|
182
|
+
AndConditions?: ContactFlowSearchCriteria[] | undefined;
|
|
183
|
+
StringCondition?: StringCondition | undefined;
|
|
184
|
+
TypeCondition?: ContactFlowType | undefined;
|
|
185
|
+
StateCondition?: ContactFlowState | undefined;
|
|
186
|
+
StatusCondition?: ContactFlowStatus | undefined;
|
|
187
|
+
}
|
|
188
|
+
export interface DataTableSearchCriteria {
|
|
189
|
+
OrConditions?: DataTableSearchCriteria[] | undefined;
|
|
190
|
+
AndConditions?: DataTableSearchCriteria[] | undefined;
|
|
191
|
+
StringCondition?: StringCondition | undefined;
|
|
192
|
+
}
|
|
193
|
+
export interface EmailAddressSearchCriteria {
|
|
194
|
+
OrConditions?: EmailAddressSearchCriteria[] | undefined;
|
|
195
|
+
AndConditions?: EmailAddressSearchCriteria[] | undefined;
|
|
196
|
+
StringCondition?: StringCondition | undefined;
|
|
197
|
+
}
|
|
198
|
+
export interface EvaluationFormItemEnablementConfiguration {
|
|
199
|
+
Condition: EvaluationFormItemEnablementCondition | undefined;
|
|
200
|
+
Action: EvaluationFormItemEnablementAction | undefined;
|
|
201
|
+
DefaultAction?: EvaluationFormItemEnablementAction | undefined;
|
|
202
|
+
}
|
|
108
203
|
export interface EvaluationFormSearchCriteria {
|
|
109
204
|
OrConditions?: EvaluationFormSearchCriteria[] | undefined;
|
|
110
205
|
AndConditions?: EvaluationFormSearchCriteria[] | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListExtractionDefinitionsCommandInput,
|
|
4
|
+
ListExtractionDefinitionsCommandOutput,
|
|
5
|
+
} from "../commands/ListExtractionDefinitionsCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListExtractionDefinitions: (
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: ListExtractionDefinitionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListExtractionDefinitionsCommandOutput>;
|
|
@@ -25,6 +25,7 @@ export * from "./ListDefaultVocabulariesPaginator";
|
|
|
25
25
|
export * from "./ListEntitySecurityProfilesPaginator";
|
|
26
26
|
export * from "./ListEvaluationFormsPaginator";
|
|
27
27
|
export * from "./ListEvaluationFormVersionsPaginator";
|
|
28
|
+
export * from "./ListExtractionDefinitionsPaginator";
|
|
28
29
|
export * from "./ListFlowAssociationsPaginator";
|
|
29
30
|
export * from "./ListHoursOfOperationOverridesPaginator";
|
|
30
31
|
export * from "./ListHoursOfOperationsPaginator";
|
|
@@ -229,6 +229,8 @@ export declare var CreateEmailAddressRequest$: StaticStructureSchema;
|
|
|
229
229
|
export declare var CreateEmailAddressResponse$: StaticStructureSchema;
|
|
230
230
|
export declare var CreateEvaluationFormRequest$: StaticStructureSchema;
|
|
231
231
|
export declare var CreateEvaluationFormResponse$: StaticStructureSchema;
|
|
232
|
+
export declare var CreateExtractionDefinitionRequest$: StaticStructureSchema;
|
|
233
|
+
export declare var CreateExtractionDefinitionResponse$: StaticStructureSchema;
|
|
232
234
|
export declare var CreateHoursOfOperationOverrideRequest$: StaticStructureSchema;
|
|
233
235
|
export declare var CreateHoursOfOperationOverrideResponse$: StaticStructureSchema;
|
|
234
236
|
export declare var CreateHoursOfOperationRequest$: StaticStructureSchema;
|
|
@@ -333,6 +335,8 @@ export declare var DeleteDataTableResponse$: StaticStructureSchema;
|
|
|
333
335
|
export declare var DeleteEmailAddressRequest$: StaticStructureSchema;
|
|
334
336
|
export declare var DeleteEmailAddressResponse$: StaticStructureSchema;
|
|
335
337
|
export declare var DeleteEvaluationFormRequest$: StaticStructureSchema;
|
|
338
|
+
export declare var DeleteExtractionDefinitionRequest$: StaticStructureSchema;
|
|
339
|
+
export declare var DeleteExtractionDefinitionResponse$: StaticStructureSchema;
|
|
336
340
|
export declare var DeleteHoursOfOperationOverrideRequest$: StaticStructureSchema;
|
|
337
341
|
export declare var DeleteHoursOfOperationRequest$: StaticStructureSchema;
|
|
338
342
|
export declare var DeleteInstanceRequest$: StaticStructureSchema;
|
|
@@ -397,6 +401,8 @@ export declare var DescribeEmailAddressRequest$: StaticStructureSchema;
|
|
|
397
401
|
export declare var DescribeEmailAddressResponse$: StaticStructureSchema;
|
|
398
402
|
export declare var DescribeEvaluationFormRequest$: StaticStructureSchema;
|
|
399
403
|
export declare var DescribeEvaluationFormResponse$: StaticStructureSchema;
|
|
404
|
+
export declare var DescribeExtractionDefinitionRequest$: StaticStructureSchema;
|
|
405
|
+
export declare var DescribeExtractionDefinitionResponse$: StaticStructureSchema;
|
|
400
406
|
export declare var DescribeHoursOfOperationOverrideRequest$: StaticStructureSchema;
|
|
401
407
|
export declare var DescribeHoursOfOperationOverrideResponse$: StaticStructureSchema;
|
|
402
408
|
export declare var DescribeHoursOfOperationRequest$: StaticStructureSchema;
|
|
@@ -558,6 +564,12 @@ export declare var Expiry$: StaticStructureSchema;
|
|
|
558
564
|
export declare var Expression$: StaticStructureSchema;
|
|
559
565
|
export declare var ExtensionConfiguration$: StaticStructureSchema;
|
|
560
566
|
export declare var ExternalInvocationConfiguration$: StaticStructureSchema;
|
|
567
|
+
export declare var ExtractInformationActionDefinition$: StaticStructureSchema;
|
|
568
|
+
export declare var ExtractionConfiguration$: StaticStructureSchema;
|
|
569
|
+
export declare var ExtractionDefinition$: StaticStructureSchema;
|
|
570
|
+
export declare var ExtractionDefinitionDisplay$: StaticStructureSchema;
|
|
571
|
+
export declare var ExtractionDefinitionNotFoundBehavior$: StaticStructureSchema;
|
|
572
|
+
export declare var ExtractionDefinitionSummary$: StaticStructureSchema;
|
|
561
573
|
export declare var FailedBatchAssociationSummary$: StaticStructureSchema;
|
|
562
574
|
export declare var FailedRequest$: StaticStructureSchema;
|
|
563
575
|
export declare var FieldValue$: StaticStructureSchema;
|
|
@@ -697,6 +709,8 @@ export declare var ListEvaluationFormsRequest$: StaticStructureSchema;
|
|
|
697
709
|
export declare var ListEvaluationFormsResponse$: StaticStructureSchema;
|
|
698
710
|
export declare var ListEvaluationFormVersionsRequest$: StaticStructureSchema;
|
|
699
711
|
export declare var ListEvaluationFormVersionsResponse$: StaticStructureSchema;
|
|
712
|
+
export declare var ListExtractionDefinitionsRequest$: StaticStructureSchema;
|
|
713
|
+
export declare var ListExtractionDefinitionsResponse$: StaticStructureSchema;
|
|
700
714
|
export declare var ListFlowAssociationsRequest$: StaticStructureSchema;
|
|
701
715
|
export declare var ListFlowAssociationsResponse$: StaticStructureSchema;
|
|
702
716
|
export declare var ListHoursOfOperationOverridesRequest$: StaticStructureSchema;
|
|
@@ -945,6 +959,7 @@ export declare var RuleAttributeAndCondition$: StaticStructureSchema;
|
|
|
945
959
|
export declare var RuleAttributeFilter$: StaticStructureSchema;
|
|
946
960
|
export declare var RulesConfiguration$: StaticStructureSchema;
|
|
947
961
|
export declare var RuleSearchSummary$: StaticStructureSchema;
|
|
962
|
+
export declare var RulesExtractionDefinitionIdentifier$: StaticStructureSchema;
|
|
948
963
|
export declare var RulesSearchCriteria$: StaticStructureSchema;
|
|
949
964
|
export declare var RulesSearchFilter$: StaticStructureSchema;
|
|
950
965
|
export declare var RuleSummary$: StaticStructureSchema;
|
|
@@ -1170,6 +1185,8 @@ export declare var UpdateEmailAddressMetadataRequest$: StaticStructureSchema;
|
|
|
1170
1185
|
export declare var UpdateEmailAddressMetadataResponse$: StaticStructureSchema;
|
|
1171
1186
|
export declare var UpdateEvaluationFormRequest$: StaticStructureSchema;
|
|
1172
1187
|
export declare var UpdateEvaluationFormResponse$: StaticStructureSchema;
|
|
1188
|
+
export declare var UpdateExtractionDefinitionRequest$: StaticStructureSchema;
|
|
1189
|
+
export declare var UpdateExtractionDefinitionResponse$: StaticStructureSchema;
|
|
1173
1190
|
export declare var UpdateHoursOfOperationOverrideRequest$: StaticStructureSchema;
|
|
1174
1191
|
export declare var UpdateHoursOfOperationRequest$: StaticStructureSchema;
|
|
1175
1192
|
export declare var UpdateInstanceAttributeRequest$: StaticStructureSchema;
|
|
@@ -1352,6 +1369,7 @@ export declare var CreateDataTable$: StaticOperationSchema;
|
|
|
1352
1369
|
export declare var CreateDataTableAttribute$: StaticOperationSchema;
|
|
1353
1370
|
export declare var CreateEmailAddress$: StaticOperationSchema;
|
|
1354
1371
|
export declare var CreateEvaluationForm$: StaticOperationSchema;
|
|
1372
|
+
export declare var CreateExtractionDefinition$: StaticOperationSchema;
|
|
1355
1373
|
export declare var CreateHoursOfOperation$: StaticOperationSchema;
|
|
1356
1374
|
export declare var CreateHoursOfOperationOverride$: StaticOperationSchema;
|
|
1357
1375
|
export declare var CreateInstance$: StaticOperationSchema;
|
|
@@ -1392,6 +1410,7 @@ export declare var DeleteDataTable$: StaticOperationSchema;
|
|
|
1392
1410
|
export declare var DeleteDataTableAttribute$: StaticOperationSchema;
|
|
1393
1411
|
export declare var DeleteEmailAddress$: StaticOperationSchema;
|
|
1394
1412
|
export declare var DeleteEvaluationForm$: StaticOperationSchema;
|
|
1413
|
+
export declare var DeleteExtractionDefinition$: StaticOperationSchema;
|
|
1395
1414
|
export declare var DeleteHoursOfOperation$: StaticOperationSchema;
|
|
1396
1415
|
export declare var DeleteHoursOfOperationOverride$: StaticOperationSchema;
|
|
1397
1416
|
export declare var DeleteInstance$: StaticOperationSchema;
|
|
@@ -1431,6 +1450,7 @@ export declare var DescribeDataTable$: StaticOperationSchema;
|
|
|
1431
1450
|
export declare var DescribeDataTableAttribute$: StaticOperationSchema;
|
|
1432
1451
|
export declare var DescribeEmailAddress$: StaticOperationSchema;
|
|
1433
1452
|
export declare var DescribeEvaluationForm$: StaticOperationSchema;
|
|
1453
|
+
export declare var DescribeExtractionDefinition$: StaticOperationSchema;
|
|
1434
1454
|
export declare var DescribeHoursOfOperation$: StaticOperationSchema;
|
|
1435
1455
|
export declare var DescribeHoursOfOperationOverride$: StaticOperationSchema;
|
|
1436
1456
|
export declare var DescribeInstance$: StaticOperationSchema;
|
|
@@ -1515,6 +1535,7 @@ export declare var ListDefaultVocabularies$: StaticOperationSchema;
|
|
|
1515
1535
|
export declare var ListEntitySecurityProfiles$: StaticOperationSchema;
|
|
1516
1536
|
export declare var ListEvaluationForms$: StaticOperationSchema;
|
|
1517
1537
|
export declare var ListEvaluationFormVersions$: StaticOperationSchema;
|
|
1538
|
+
export declare var ListExtractionDefinitions$: StaticOperationSchema;
|
|
1518
1539
|
export declare var ListFlowAssociations$: StaticOperationSchema;
|
|
1519
1540
|
export declare var ListHoursOfOperationOverrides$: StaticOperationSchema;
|
|
1520
1541
|
export declare var ListHoursOfOperations$: StaticOperationSchema;
|
|
@@ -1648,6 +1669,7 @@ export declare var UpdateDataTableMetadata$: StaticOperationSchema;
|
|
|
1648
1669
|
export declare var UpdateDataTablePrimaryValues$: StaticOperationSchema;
|
|
1649
1670
|
export declare var UpdateEmailAddressMetadata$: StaticOperationSchema;
|
|
1650
1671
|
export declare var UpdateEvaluationForm$: StaticOperationSchema;
|
|
1672
|
+
export declare var UpdateExtractionDefinition$: StaticOperationSchema;
|
|
1651
1673
|
export declare var UpdateHoursOfOperation$: StaticOperationSchema;
|
|
1652
1674
|
export declare var UpdateHoursOfOperationOverride$: StaticOperationSchema;
|
|
1653
1675
|
export declare var UpdateInstanceAttribute$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connect",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1112.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-connect",
|
|
6
6
|
"license": "Apache-2.0",
|