@aws-sdk/client-connect 3.948.0 → 3.951.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 +7 -1
- package/dist-es/models/enums.js +3 -0
- package/dist-es/schemas/schemas_0.js +4 -1
- 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/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 +62 -27
- 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 +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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,
|
|
@@ -1168,6 +1169,9 @@ export interface StartChatContactRequest {
|
|
|
1168
1169
|
RelatedContactId?: string | undefined;
|
|
1169
1170
|
SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
|
|
1170
1171
|
CustomerId?: string | undefined;
|
|
1172
|
+
DisconnectOnCustomerExit?:
|
|
1173
|
+
| DisconnectOnCustomerExitParticipantType[]
|
|
1174
|
+
| undefined;
|
|
1171
1175
|
}
|
|
1172
1176
|
export interface StartEmailContactRequest {
|
|
1173
1177
|
InstanceId: 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.951.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",
|