@aws-sdk/client-connect 3.948.0 → 3.952.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/dist-cjs/index.js +10 -2
- package/dist-es/models/enums.js +3 -0
- package/dist-es/schemas/schemas_0.js +7 -2
- package/dist-types/commands/AssociateWorkspaceCommand.d.ts +2 -1
- package/dist-types/commands/BatchCreateDataTableValueCommand.d.ts +6 -1
- package/dist-types/commands/BatchDeleteDataTableValueCommand.d.ts +3 -1
- package/dist-types/commands/BatchDescribeDataTableValueCommand.d.ts +3 -1
- package/dist-types/commands/BatchUpdateDataTableValueCommand.d.ts +3 -1
- package/dist-types/commands/CreateDataTableAttributeCommand.d.ts +4 -1
- package/dist-types/commands/CreateDataTableCommand.d.ts +3 -1
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDataTableCommand.d.ts +5 -1
- package/dist-types/commands/DeleteWorkspacePageCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDataTableAttributeCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDataTableCommand.d.ts +3 -1
- package/dist-types/commands/EvaluateDataTableValuesCommand.d.ts +5 -1
- package/dist-types/commands/ListDataTableAttributesCommand.d.ts +3 -1
- package/dist-types/commands/ListDataTablePrimaryValuesCommand.d.ts +2 -1
- package/dist-types/commands/ListDataTableValuesCommand.d.ts +2 -1
- package/dist-types/commands/ListDataTablesCommand.d.ts +2 -1
- package/dist-types/commands/SearchDataTablesCommand.d.ts +3 -1
- package/dist-types/commands/StartChatContactCommand.d.ts +3 -0
- package/dist-types/commands/StartOutboundChatContactCommand.d.ts +10 -0
- package/dist-types/commands/UpdateDataTableAttributeCommand.d.ts +4 -1
- package/dist-types/commands/UpdateDataTableMetadataCommand.d.ts +3 -1
- package/dist-types/commands/UpdateDataTablePrimaryValuesCommand.d.ts +3 -1
- package/dist-types/commands/UpdateWorkspaceVisibilityCommand.d.ts +2 -1
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +108 -49
- package/dist-types/models/models_1.d.ts +50 -23
- package/dist-types/models/models_2.d.ts +55 -44
- package/dist-types/models/models_3.d.ts +68 -28
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_3.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1207,6 +1207,7 @@ export declare var DataTableValueIdentifierList: StaticListSchema;
|
|
|
1207
1207
|
export declare var DataTableValueList: StaticListSchema;
|
|
1208
1208
|
export declare var DataTableValueSummaryList: StaticListSchema;
|
|
1209
1209
|
export declare var DefaultVocabularyList: StaticListSchema;
|
|
1210
|
+
export declare var DisconnectOnCustomerExit: number;
|
|
1210
1211
|
export declare var DistributionList: StaticListSchema;
|
|
1211
1212
|
export declare var EffectiveHoursOfOperationList: StaticListSchema;
|
|
1212
1213
|
export declare var EmailAddressList: StaticListSchema;
|
|
@@ -1396,6 +1396,11 @@ export declare const TrafficType: {
|
|
|
1396
1396
|
readonly GENERAL: "GENERAL";
|
|
1397
1397
|
};
|
|
1398
1398
|
export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
|
|
1399
|
+
export declare const DisconnectOnCustomerExitParticipantType: {
|
|
1400
|
+
readonly AGENT: "AGENT";
|
|
1401
|
+
};
|
|
1402
|
+
export type DisconnectOnCustomerExitParticipantType =
|
|
1403
|
+
(typeof DisconnectOnCustomerExitParticipantType)[keyof typeof DisconnectOnCustomerExitParticipantType];
|
|
1399
1404
|
export declare const ResponseMode: {
|
|
1400
1405
|
readonly COMPLETE: "COMPLETE";
|
|
1401
1406
|
readonly INCREMENTAL: "INCREMENTAL";
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ContactRecordingType,
|
|
13
13
|
DataTableAttributeValueType,
|
|
14
14
|
DataTableLockLevel,
|
|
15
|
+
DisconnectOnCustomerExitParticipantType,
|
|
15
16
|
EvaluationFormItemEnablementAction,
|
|
16
17
|
EvaluationFormItemEnablementOperator,
|
|
17
18
|
EvaluationFormQuestionType,
|
|
@@ -129,6 +130,7 @@ import {
|
|
|
129
130
|
QuickConnectSearchFilter,
|
|
130
131
|
RoutingProfileSearchFilter,
|
|
131
132
|
SecurityProfilesSearchFilter,
|
|
133
|
+
TemplatedMessageConfig,
|
|
132
134
|
UserHierarchyGroupSearchFilter,
|
|
133
135
|
UserSearchFilter,
|
|
134
136
|
ViewSearchFilter,
|
|
@@ -1168,6 +1170,9 @@ export interface StartChatContactRequest {
|
|
|
1168
1170
|
RelatedContactId?: string | undefined;
|
|
1169
1171
|
SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
|
|
1170
1172
|
CustomerId?: string | undefined;
|
|
1173
|
+
DisconnectOnCustomerExit?:
|
|
1174
|
+
| DisconnectOnCustomerExitParticipantType[]
|
|
1175
|
+
| undefined;
|
|
1171
1176
|
}
|
|
1172
1177
|
export interface StartEmailContactRequest {
|
|
1173
1178
|
InstanceId: string | undefined;
|
|
@@ -1195,6 +1200,7 @@ export interface StartOutboundChatContactRequest {
|
|
|
1195
1200
|
ChatDurationInMinutes?: number | undefined;
|
|
1196
1201
|
ParticipantDetails?: ParticipantDetails | undefined;
|
|
1197
1202
|
InitialSystemMessage?: ChatMessage | undefined;
|
|
1203
|
+
InitialTemplatedSystemMessage?: TemplatedMessageConfig | undefined;
|
|
1198
1204
|
RelatedContactId?: string | undefined;
|
|
1199
1205
|
SupportedMessagingContentTypes?: string[] | undefined;
|
|
1200
1206
|
ClientToken?: string | undefined;
|
|
@@ -1214,6 +1214,7 @@ export declare var DataTableValueIdentifierList: StaticListSchema;
|
|
|
1214
1214
|
export declare var DataTableValueList: StaticListSchema;
|
|
1215
1215
|
export declare var DataTableValueSummaryList: StaticListSchema;
|
|
1216
1216
|
export declare var DefaultVocabularyList: StaticListSchema;
|
|
1217
|
+
export declare var DisconnectOnCustomerExit: number;
|
|
1217
1218
|
export declare var DistributionList: StaticListSchema;
|
|
1218
1219
|
export declare var EffectiveHoursOfOperationList: StaticListSchema;
|
|
1219
1220
|
export declare var EmailAddressList: StaticListSchema;
|
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.
|
|
4
|
+
"version": "3.952.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connect",
|
|
@@ -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.947.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.952.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.948.0",
|