@aws-sdk/client-connect 3.441.0 → 3.443.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 +8 -0
- package/dist-cjs/Connect.js +2 -0
- package/dist-cjs/commands/CreatePersistentContactAssociationCommand.js +51 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +6 -2
- package/dist-cjs/models/models_1.js +1 -13
- package/dist-cjs/models/models_2.js +9 -1
- package/dist-cjs/protocols/Aws_restJson1.js +84 -9
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/CreatePersistentContactAssociationCommand.js +47 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +0 -12
- package/dist-es/models/models_2.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +73 -0
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/CreatePersistentContactAssociationCommand.d.ts +98 -0
- package/dist-types/commands/CreateViewCommand.d.ts +7 -5
- package/dist-types/commands/CreateViewVersionCommand.d.ts +3 -3
- package/dist-types/commands/DeleteViewCommand.d.ts +2 -1
- package/dist-types/commands/DescribeUserHierarchyGroupCommand.d.ts +2 -1
- package/dist-types/commands/DescribeUserHierarchyStructureCommand.d.ts +1 -2
- package/dist-types/commands/DescribeViewCommand.d.ts +4 -4
- package/dist-types/commands/ListViewVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ReplicateInstanceCommand.d.ts +2 -3
- package/dist-types/commands/SuspendContactRecordingCommand.d.ts +3 -3
- package/dist-types/commands/UpdateViewContentCommand.d.ts +6 -4
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +180 -72
- package/dist-types/models/models_1.d.ts +106 -59
- package/dist-types/models/models_2.d.ts +34 -6
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +23 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreatePersistentContactAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeUserHierarchyGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeUserHierarchyStructureCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -13
- package/dist-types/ts3.4/models/models_1.d.ts +15 -19
- package/dist-types/ts3.4/models/models_2.d.ts +12 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
import { AgentAvailabilityTimer, AgentConfig, Application, Evaluation, EvaluationFormQuestion, EvaluationFormScoringStrategy, EvaluationFormVersionStatus, MediaConcurrency, OutboundCallerConfig, QueueStatus, QuickConnectConfig, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, View, ViewInputContent, ViewStatus } from "./models_0";
|
|
2
|
-
import { HierarchyGroupCondition, HoursOfOperationSearchFilter,
|
|
2
|
+
import { HierarchyGroupCondition, HoursOfOperationSearchFilter, PromptSearchFilter, QueueSearchFilter, QuickConnectSearchFilter, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, SignInConfig, StringCondition, TelephonyConfig, UserSearchFilter } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* @enum
|
|
6
|
+
*/
|
|
7
|
+
export declare const TimerEligibleParticipantRoles: {
|
|
8
|
+
readonly AGENT: "AGENT";
|
|
9
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type TimerEligibleParticipantRoles = (typeof TimerEligibleParticipantRoles)[keyof typeof TimerEligibleParticipantRoles];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const ParticipantTimerType: {
|
|
20
|
+
readonly DISCONNECT_NONCUSTOMER: "DISCONNECT_NONCUSTOMER";
|
|
21
|
+
readonly IDLE: "IDLE";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type ParticipantTimerType = (typeof ParticipantTimerType)[keyof typeof ParticipantTimerType];
|
|
3
27
|
/**
|
|
4
28
|
* @public
|
|
5
29
|
* @enum
|
|
@@ -943,18 +967,20 @@ export interface UpdateUserSecurityProfilesRequest {
|
|
|
943
967
|
export interface UpdateViewContentRequest {
|
|
944
968
|
/**
|
|
945
969
|
* @public
|
|
946
|
-
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of
|
|
970
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of
|
|
971
|
+
* the instance.</p>
|
|
947
972
|
*/
|
|
948
973
|
InstanceId: string | undefined;
|
|
949
974
|
/**
|
|
950
975
|
* @public
|
|
951
|
-
* <p>The identifier of the view. Both <code>ViewArn</code> and <code>ViewId</code> can be
|
|
976
|
+
* <p>The identifier of the view. Both <code>ViewArn</code> and <code>ViewId</code> can be
|
|
977
|
+
* used.</p>
|
|
952
978
|
*/
|
|
953
979
|
ViewId: string | undefined;
|
|
954
980
|
/**
|
|
955
981
|
* @public
|
|
956
982
|
* <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The
|
|
957
|
-
*
|
|
983
|
+
* <code>PUBLISHED</code> status will initiate validation on the content.</p>
|
|
958
984
|
*/
|
|
959
985
|
Status: ViewStatus | undefined;
|
|
960
986
|
/**
|
|
@@ -981,12 +1007,14 @@ export interface UpdateViewContentResponse {
|
|
|
981
1007
|
export interface UpdateViewMetadataRequest {
|
|
982
1008
|
/**
|
|
983
1009
|
* @public
|
|
984
|
-
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of
|
|
1010
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of
|
|
1011
|
+
* the instance.</p>
|
|
985
1012
|
*/
|
|
986
1013
|
InstanceId: string | undefined;
|
|
987
1014
|
/**
|
|
988
1015
|
* @public
|
|
989
|
-
* <p>The identifier of the view. Both <code>ViewArn</code> and <code>ViewId</code> can be
|
|
1016
|
+
* <p>The identifier of the view. Both <code>ViewArn</code> and <code>ViewId</code> can be
|
|
1017
|
+
* used.</p>
|
|
990
1018
|
*/
|
|
991
1019
|
ViewId: string | undefined;
|
|
992
1020
|
/**
|
|
@@ -22,6 +22,7 @@ import { CreateHoursOfOperationCommandInput, CreateHoursOfOperationCommandOutput
|
|
|
22
22
|
import { CreateInstanceCommandInput, CreateInstanceCommandOutput } from "../commands/CreateInstanceCommand";
|
|
23
23
|
import { CreateIntegrationAssociationCommandInput, CreateIntegrationAssociationCommandOutput } from "../commands/CreateIntegrationAssociationCommand";
|
|
24
24
|
import { CreateParticipantCommandInput, CreateParticipantCommandOutput } from "../commands/CreateParticipantCommand";
|
|
25
|
+
import { CreatePersistentContactAssociationCommandInput, CreatePersistentContactAssociationCommandOutput } from "../commands/CreatePersistentContactAssociationCommand";
|
|
25
26
|
import { CreatePromptCommandInput, CreatePromptCommandOutput } from "../commands/CreatePromptCommand";
|
|
26
27
|
import { CreateQueueCommandInput, CreateQueueCommandOutput } from "../commands/CreateQueueCommand";
|
|
27
28
|
import { CreateQuickConnectCommandInput, CreateQuickConnectCommandOutput } from "../commands/CreateQuickConnectCommand";
|
|
@@ -300,6 +301,10 @@ export declare const se_CreateIntegrationAssociationCommand: (input: CreateInteg
|
|
|
300
301
|
* serializeAws_restJson1CreateParticipantCommand
|
|
301
302
|
*/
|
|
302
303
|
export declare const se_CreateParticipantCommand: (input: CreateParticipantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
304
|
+
/**
|
|
305
|
+
* serializeAws_restJson1CreatePersistentContactAssociationCommand
|
|
306
|
+
*/
|
|
307
|
+
export declare const se_CreatePersistentContactAssociationCommand: (input: CreatePersistentContactAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
303
308
|
/**
|
|
304
309
|
* serializeAws_restJson1CreatePromptCommand
|
|
305
310
|
*/
|
|
@@ -1148,6 +1153,10 @@ export declare const de_CreateIntegrationAssociationCommand: (output: __HttpResp
|
|
|
1148
1153
|
* deserializeAws_restJson1CreateParticipantCommand
|
|
1149
1154
|
*/
|
|
1150
1155
|
export declare const de_CreateParticipantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateParticipantCommandOutput>;
|
|
1156
|
+
/**
|
|
1157
|
+
* deserializeAws_restJson1CreatePersistentContactAssociationCommand
|
|
1158
|
+
*/
|
|
1159
|
+
export declare const de_CreatePersistentContactAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePersistentContactAssociationCommandOutput>;
|
|
1151
1160
|
/**
|
|
1152
1161
|
* deserializeAws_restJson1CreatePromptCommand
|
|
1153
1162
|
*/
|
|
@@ -87,6 +87,10 @@ import {
|
|
|
87
87
|
CreateParticipantCommandInput,
|
|
88
88
|
CreateParticipantCommandOutput,
|
|
89
89
|
} from "./commands/CreateParticipantCommand";
|
|
90
|
+
import {
|
|
91
|
+
CreatePersistentContactAssociationCommandInput,
|
|
92
|
+
CreatePersistentContactAssociationCommandOutput,
|
|
93
|
+
} from "./commands/CreatePersistentContactAssociationCommand";
|
|
90
94
|
import {
|
|
91
95
|
CreatePromptCommandInput,
|
|
92
96
|
CreatePromptCommandOutput,
|
|
@@ -1141,6 +1145,25 @@ export interface Connect {
|
|
|
1141
1145
|
options: __HttpHandlerOptions,
|
|
1142
1146
|
cb: (err: any, data?: CreateParticipantCommandOutput) => void
|
|
1143
1147
|
): void;
|
|
1148
|
+
createPersistentContactAssociation(
|
|
1149
|
+
args: CreatePersistentContactAssociationCommandInput,
|
|
1150
|
+
options?: __HttpHandlerOptions
|
|
1151
|
+
): Promise<CreatePersistentContactAssociationCommandOutput>;
|
|
1152
|
+
createPersistentContactAssociation(
|
|
1153
|
+
args: CreatePersistentContactAssociationCommandInput,
|
|
1154
|
+
cb: (
|
|
1155
|
+
err: any,
|
|
1156
|
+
data?: CreatePersistentContactAssociationCommandOutput
|
|
1157
|
+
) => void
|
|
1158
|
+
): void;
|
|
1159
|
+
createPersistentContactAssociation(
|
|
1160
|
+
args: CreatePersistentContactAssociationCommandInput,
|
|
1161
|
+
options: __HttpHandlerOptions,
|
|
1162
|
+
cb: (
|
|
1163
|
+
err: any,
|
|
1164
|
+
data?: CreatePersistentContactAssociationCommandOutput
|
|
1165
|
+
) => void
|
|
1166
|
+
): void;
|
|
1144
1167
|
createPrompt(
|
|
1145
1168
|
args: CreatePromptCommandInput,
|
|
1146
1169
|
options?: __HttpHandlerOptions
|
|
@@ -133,6 +133,10 @@ import {
|
|
|
133
133
|
CreateParticipantCommandInput,
|
|
134
134
|
CreateParticipantCommandOutput,
|
|
135
135
|
} from "./commands/CreateParticipantCommand";
|
|
136
|
+
import {
|
|
137
|
+
CreatePersistentContactAssociationCommandInput,
|
|
138
|
+
CreatePersistentContactAssociationCommandOutput,
|
|
139
|
+
} from "./commands/CreatePersistentContactAssociationCommand";
|
|
136
140
|
import {
|
|
137
141
|
CreatePromptCommandInput,
|
|
138
142
|
CreatePromptCommandOutput,
|
|
@@ -923,6 +927,7 @@ export type ServiceInputTypes =
|
|
|
923
927
|
| CreateInstanceCommandInput
|
|
924
928
|
| CreateIntegrationAssociationCommandInput
|
|
925
929
|
| CreateParticipantCommandInput
|
|
930
|
+
| CreatePersistentContactAssociationCommandInput
|
|
926
931
|
| CreatePromptCommandInput
|
|
927
932
|
| CreateQueueCommandInput
|
|
928
933
|
| CreateQuickConnectCommandInput
|
|
@@ -1136,6 +1141,7 @@ export type ServiceOutputTypes =
|
|
|
1136
1141
|
| CreateInstanceCommandOutput
|
|
1137
1142
|
| CreateIntegrationAssociationCommandOutput
|
|
1138
1143
|
| CreateParticipantCommandOutput
|
|
1144
|
+
| CreatePersistentContactAssociationCommandOutput
|
|
1139
1145
|
| CreatePromptCommandOutput
|
|
1140
1146
|
| CreateQueueCommandOutput
|
|
1141
1147
|
| CreateQuickConnectCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ConnectClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ConnectClient";
|
|
14
|
+
import {
|
|
15
|
+
CreatePersistentContactAssociationRequest,
|
|
16
|
+
CreatePersistentContactAssociationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreatePersistentContactAssociationCommandInput
|
|
20
|
+
extends CreatePersistentContactAssociationRequest {}
|
|
21
|
+
export interface CreatePersistentContactAssociationCommandOutput
|
|
22
|
+
extends CreatePersistentContactAssociationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreatePersistentContactAssociationCommand extends $Command<
|
|
25
|
+
CreatePersistentContactAssociationCommandInput,
|
|
26
|
+
CreatePersistentContactAssociationCommandOutput,
|
|
27
|
+
ConnectClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreatePersistentContactAssociationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreatePersistentContactAssociationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ConnectClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreatePersistentContactAssociationCommandInput,
|
|
38
|
+
CreatePersistentContactAssociationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
DescribeUserHierarchyGroupResponse,
|
|
17
|
-
} from "../models/models_0";
|
|
14
|
+
import { DescribeUserHierarchyGroupRequest } from "../models/models_0";
|
|
15
|
+
import { DescribeUserHierarchyGroupResponse } from "../models/models_1";
|
|
18
16
|
export { __MetadataBearer, $Command };
|
|
19
17
|
export interface DescribeUserHierarchyGroupCommandInput
|
|
20
18
|
extends DescribeUserHierarchyGroupRequest {}
|
|
@@ -11,8 +11,10 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
14
|
+
import {
|
|
15
|
+
DescribeUserHierarchyStructureRequest,
|
|
16
|
+
DescribeUserHierarchyStructureResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
16
18
|
export { __MetadataBearer, $Command };
|
|
17
19
|
export interface DescribeUserHierarchyStructureCommandInput
|
|
18
20
|
extends DescribeUserHierarchyStructureRequest {}
|
|
@@ -20,6 +20,7 @@ export * from "./CreateHoursOfOperationCommand";
|
|
|
20
20
|
export * from "./CreateInstanceCommand";
|
|
21
21
|
export * from "./CreateIntegrationAssociationCommand";
|
|
22
22
|
export * from "./CreateParticipantCommand";
|
|
23
|
+
export * from "./CreatePersistentContactAssociationCommand";
|
|
23
24
|
export * from "./CreatePromptCommand";
|
|
24
25
|
export * from "./CreateQueueCommand";
|
|
25
26
|
export * from "./CreateQuickConnectCommand";
|
|
@@ -743,6 +743,22 @@ export interface CreateParticipantResponse {
|
|
|
743
743
|
ParticipantCredentials?: ParticipantTokenCredentials;
|
|
744
744
|
ParticipantId?: string;
|
|
745
745
|
}
|
|
746
|
+
export declare const RehydrationType: {
|
|
747
|
+
readonly ENTIRE_PAST_SESSION: "ENTIRE_PAST_SESSION";
|
|
748
|
+
readonly FROM_SEGMENT: "FROM_SEGMENT";
|
|
749
|
+
};
|
|
750
|
+
export type RehydrationType =
|
|
751
|
+
(typeof RehydrationType)[keyof typeof RehydrationType];
|
|
752
|
+
export interface CreatePersistentContactAssociationRequest {
|
|
753
|
+
InstanceId: string | undefined;
|
|
754
|
+
InitialContactId: string | undefined;
|
|
755
|
+
RehydrationType: RehydrationType | undefined;
|
|
756
|
+
SourceContactId: string | undefined;
|
|
757
|
+
ClientToken?: string;
|
|
758
|
+
}
|
|
759
|
+
export interface CreatePersistentContactAssociationResponse {
|
|
760
|
+
ContinuedFromContactId?: string;
|
|
761
|
+
}
|
|
746
762
|
export interface CreatePromptRequest {
|
|
747
763
|
InstanceId: string | undefined;
|
|
748
764
|
Name: string | undefined;
|
|
@@ -2064,19 +2080,6 @@ export interface HierarchyGroup {
|
|
|
2064
2080
|
LastModifiedTime?: Date;
|
|
2065
2081
|
LastModifiedRegion?: string;
|
|
2066
2082
|
}
|
|
2067
|
-
export interface DescribeUserHierarchyGroupResponse {
|
|
2068
|
-
HierarchyGroup?: HierarchyGroup;
|
|
2069
|
-
}
|
|
2070
|
-
export interface DescribeUserHierarchyStructureRequest {
|
|
2071
|
-
InstanceId: string | undefined;
|
|
2072
|
-
}
|
|
2073
|
-
export interface HierarchyLevel {
|
|
2074
|
-
Id?: string;
|
|
2075
|
-
Arn?: string;
|
|
2076
|
-
Name?: string;
|
|
2077
|
-
LastModifiedTime?: Date;
|
|
2078
|
-
LastModifiedRegion?: string;
|
|
2079
|
-
}
|
|
2080
2083
|
export declare const CreateInstanceRequestFilterSensitiveLog: (
|
|
2081
2084
|
obj: CreateInstanceRequest
|
|
2082
2085
|
) => any;
|
|
@@ -23,8 +23,8 @@ import {
|
|
|
23
23
|
EvaluationScore,
|
|
24
24
|
EvaluationStatus,
|
|
25
25
|
EventSourceName,
|
|
26
|
+
HierarchyGroup,
|
|
26
27
|
HierarchyGroupSummary,
|
|
27
|
-
HierarchyLevel,
|
|
28
28
|
HoursOfOperation,
|
|
29
29
|
HoursOfOperationConfig,
|
|
30
30
|
InstanceAttributeType,
|
|
@@ -44,6 +44,7 @@ import {
|
|
|
44
44
|
QuickConnectType,
|
|
45
45
|
Reference,
|
|
46
46
|
ReferenceType,
|
|
47
|
+
RehydrationType,
|
|
47
48
|
RoutingProfile,
|
|
48
49
|
RoutingProfileQueueReference,
|
|
49
50
|
RulePublishStatus,
|
|
@@ -61,6 +62,19 @@ import {
|
|
|
61
62
|
VocabularyLanguageCode,
|
|
62
63
|
VocabularyState,
|
|
63
64
|
} from "./models_0";
|
|
65
|
+
export interface DescribeUserHierarchyGroupResponse {
|
|
66
|
+
HierarchyGroup?: HierarchyGroup;
|
|
67
|
+
}
|
|
68
|
+
export interface DescribeUserHierarchyStructureRequest {
|
|
69
|
+
InstanceId: string | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface HierarchyLevel {
|
|
72
|
+
Id?: string;
|
|
73
|
+
Arn?: string;
|
|
74
|
+
Name?: string;
|
|
75
|
+
LastModifiedTime?: Date;
|
|
76
|
+
LastModifiedRegion?: string;
|
|
77
|
+
}
|
|
64
78
|
export interface HierarchyStructure {
|
|
65
79
|
LevelOne?: HierarchyLevel;
|
|
66
80
|
LevelTwo?: HierarchyLevel;
|
|
@@ -1436,12 +1450,6 @@ export interface ChatMessage {
|
|
|
1436
1450
|
export interface ParticipantDetails {
|
|
1437
1451
|
DisplayName: string | undefined;
|
|
1438
1452
|
}
|
|
1439
|
-
export declare const RehydrationType: {
|
|
1440
|
-
readonly ENTIRE_PAST_SESSION: "ENTIRE_PAST_SESSION";
|
|
1441
|
-
readonly FROM_SEGMENT: "FROM_SEGMENT";
|
|
1442
|
-
};
|
|
1443
|
-
export type RehydrationType =
|
|
1444
|
-
(typeof RehydrationType)[keyof typeof RehydrationType];
|
|
1445
1453
|
export interface PersistentChat {
|
|
1446
1454
|
RehydrationType?: RehydrationType;
|
|
1447
1455
|
SourceContactId?: string;
|
|
@@ -1725,18 +1733,6 @@ export interface UpdateInstanceStorageConfigRequest {
|
|
|
1725
1733
|
ResourceType: InstanceStorageResourceType | undefined;
|
|
1726
1734
|
StorageConfig: InstanceStorageConfig | undefined;
|
|
1727
1735
|
}
|
|
1728
|
-
export declare const TimerEligibleParticipantRoles: {
|
|
1729
|
-
readonly AGENT: "AGENT";
|
|
1730
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
1731
|
-
};
|
|
1732
|
-
export type TimerEligibleParticipantRoles =
|
|
1733
|
-
(typeof TimerEligibleParticipantRoles)[keyof typeof TimerEligibleParticipantRoles];
|
|
1734
|
-
export declare const ParticipantTimerType: {
|
|
1735
|
-
readonly DISCONNECT_NONCUSTOMER: "DISCONNECT_NONCUSTOMER";
|
|
1736
|
-
readonly IDLE: "IDLE";
|
|
1737
|
-
};
|
|
1738
|
-
export type ParticipantTimerType =
|
|
1739
|
-
(typeof ParticipantTimerType)[keyof typeof ParticipantTimerType];
|
|
1740
1736
|
export declare const DescribeViewResponseFilterSensitiveLog: (
|
|
1741
1737
|
obj: DescribeViewResponse
|
|
1742
1738
|
) => any;
|
|
@@ -26,7 +26,6 @@ import {
|
|
|
26
26
|
import {
|
|
27
27
|
HierarchyGroupCondition,
|
|
28
28
|
HoursOfOperationSearchFilter,
|
|
29
|
-
ParticipantTimerType,
|
|
30
29
|
PromptSearchFilter,
|
|
31
30
|
QueueSearchFilter,
|
|
32
31
|
QuickConnectSearchFilter,
|
|
@@ -36,9 +35,20 @@ import {
|
|
|
36
35
|
SignInConfig,
|
|
37
36
|
StringCondition,
|
|
38
37
|
TelephonyConfig,
|
|
39
|
-
TimerEligibleParticipantRoles,
|
|
40
38
|
UserSearchFilter,
|
|
41
39
|
} from "./models_1";
|
|
40
|
+
export declare const TimerEligibleParticipantRoles: {
|
|
41
|
+
readonly AGENT: "AGENT";
|
|
42
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
43
|
+
};
|
|
44
|
+
export type TimerEligibleParticipantRoles =
|
|
45
|
+
(typeof TimerEligibleParticipantRoles)[keyof typeof TimerEligibleParticipantRoles];
|
|
46
|
+
export declare const ParticipantTimerType: {
|
|
47
|
+
readonly DISCONNECT_NONCUSTOMER: "DISCONNECT_NONCUSTOMER";
|
|
48
|
+
readonly IDLE: "IDLE";
|
|
49
|
+
};
|
|
50
|
+
export type ParticipantTimerType =
|
|
51
|
+
(typeof ParticipantTimerType)[keyof typeof ParticipantTimerType];
|
|
42
52
|
export declare const ParticipantTimerAction: {
|
|
43
53
|
readonly Unset: "Unset";
|
|
44
54
|
};
|
|
@@ -91,6 +91,10 @@ import {
|
|
|
91
91
|
CreateParticipantCommandInput,
|
|
92
92
|
CreateParticipantCommandOutput,
|
|
93
93
|
} from "../commands/CreateParticipantCommand";
|
|
94
|
+
import {
|
|
95
|
+
CreatePersistentContactAssociationCommandInput,
|
|
96
|
+
CreatePersistentContactAssociationCommandOutput,
|
|
97
|
+
} from "../commands/CreatePersistentContactAssociationCommand";
|
|
94
98
|
import {
|
|
95
99
|
CreatePromptCommandInput,
|
|
96
100
|
CreatePromptCommandOutput,
|
|
@@ -939,6 +943,10 @@ export declare const se_CreateParticipantCommand: (
|
|
|
939
943
|
input: CreateParticipantCommandInput,
|
|
940
944
|
context: __SerdeContext
|
|
941
945
|
) => Promise<__HttpRequest>;
|
|
946
|
+
export declare const se_CreatePersistentContactAssociationCommand: (
|
|
947
|
+
input: CreatePersistentContactAssociationCommandInput,
|
|
948
|
+
context: __SerdeContext
|
|
949
|
+
) => Promise<__HttpRequest>;
|
|
942
950
|
export declare const se_CreatePromptCommand: (
|
|
943
951
|
input: CreatePromptCommandInput,
|
|
944
952
|
context: __SerdeContext
|
|
@@ -1787,6 +1795,10 @@ export declare const de_CreateParticipantCommand: (
|
|
|
1787
1795
|
output: __HttpResponse,
|
|
1788
1796
|
context: __SerdeContext
|
|
1789
1797
|
) => Promise<CreateParticipantCommandOutput>;
|
|
1798
|
+
export declare const de_CreatePersistentContactAssociationCommand: (
|
|
1799
|
+
output: __HttpResponse,
|
|
1800
|
+
context: __SerdeContext
|
|
1801
|
+
) => Promise<CreatePersistentContactAssociationCommandOutput>;
|
|
1790
1802
|
export declare const de_CreatePromptCommand: (
|
|
1791
1803
|
output: __HttpResponse,
|
|
1792
1804
|
context: __SerdeContext
|
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.443.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|