@aws-sdk/client-connect 3.442.0 → 3.444.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 +16 -0
- package/dist-cjs/Connect.js +4 -0
- package/dist-cjs/commands/BatchPutContactCommand.js +51 -0
- package/dist-cjs/commands/CreatePersistentContactAssociationCommand.js +51 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +23 -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 +158 -9
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/BatchPutContactCommand.js +47 -0
- package/dist-es/commands/CreatePersistentContactAssociationCommand.js +47 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +21 -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 +145 -0
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/BatchPutContactCommand.d.ts +133 -0
- 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/DescribeTrafficDistributionGroupCommand.d.ts +2 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserHierarchyGroupCommand.d.ts +1 -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/StopContactCommand.d.ts +3 -0
- package/dist-types/commands/SuspendContactRecordingCommand.d.ts +3 -3
- package/dist-types/commands/UpdateContactFlowModuleMetadataCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContactFlowNameCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContactScheduleCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +1 -2
- package/dist-types/commands/UpdateHoursOfOperationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInstanceStorageConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateViewContentCommand.d.ts +6 -4
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +368 -398
- package/dist-types/models/models_1.d.ts +409 -253
- package/dist-types/models/models_2.d.ts +229 -7
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Connect.d.ts +40 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/BatchPutContactCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreatePersistentContactAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTrafficDistributionGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserHierarchyGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserHierarchyStructureCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateContactFlowModuleMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateContactFlowNameCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateContactScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluationFormCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateHoursOfOperationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateInstanceStorageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +77 -83
- package/dist-types/ts3.4/models/models_1.d.ts +81 -67
- package/dist-types/ts3.4/models/models_2.d.ts +62 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +1 -1
|
@@ -372,6 +372,67 @@ export interface FlowAssociationSummary {
|
|
|
372
372
|
export interface BatchGetFlowAssociationResponse {
|
|
373
373
|
FlowAssociationSummaryList?: FlowAssociationSummary[];
|
|
374
374
|
}
|
|
375
|
+
export interface Campaign {
|
|
376
|
+
CampaignId?: string;
|
|
377
|
+
}
|
|
378
|
+
export declare const EndpointType: {
|
|
379
|
+
readonly CONTACT_FLOW: "CONTACT_FLOW";
|
|
380
|
+
readonly TELEPHONE_NUMBER: "TELEPHONE_NUMBER";
|
|
381
|
+
readonly VOIP: "VOIP";
|
|
382
|
+
};
|
|
383
|
+
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
384
|
+
export interface Endpoint {
|
|
385
|
+
Type?: EndpointType;
|
|
386
|
+
Address?: string;
|
|
387
|
+
}
|
|
388
|
+
export interface ContactDataRequest {
|
|
389
|
+
SystemEndpoint?: Endpoint;
|
|
390
|
+
CustomerEndpoint?: Endpoint;
|
|
391
|
+
RequestIdentifier?: string;
|
|
392
|
+
QueueId?: string;
|
|
393
|
+
Attributes?: Record<string, string>;
|
|
394
|
+
Campaign?: Campaign;
|
|
395
|
+
}
|
|
396
|
+
export interface BatchPutContactRequest {
|
|
397
|
+
ClientToken?: string;
|
|
398
|
+
InstanceId: string | undefined;
|
|
399
|
+
ContactDataRequestList: ContactDataRequest[] | undefined;
|
|
400
|
+
}
|
|
401
|
+
export declare const FailureReasonCode: {
|
|
402
|
+
readonly IDEMPOTENCY_EXCEPTION: "IDEMPOTENCY_EXCEPTION";
|
|
403
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
404
|
+
readonly INVALID_ATTRIBUTE_KEY: "INVALID_ATTRIBUTE_KEY";
|
|
405
|
+
readonly INVALID_CUSTOMER_ENDPOINT: "INVALID_CUSTOMER_ENDPOINT";
|
|
406
|
+
readonly INVALID_QUEUE: "INVALID_QUEUE";
|
|
407
|
+
readonly INVALID_SYSTEM_ENDPOINT: "INVALID_SYSTEM_ENDPOINT";
|
|
408
|
+
readonly MISSING_CAMPAIGN: "MISSING_CAMPAIGN";
|
|
409
|
+
readonly MISSING_CUSTOMER_ENDPOINT: "MISSING_CUSTOMER_ENDPOINT";
|
|
410
|
+
readonly MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT: "MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT";
|
|
411
|
+
readonly REQUEST_THROTTLED: "REQUEST_THROTTLED";
|
|
412
|
+
};
|
|
413
|
+
export type FailureReasonCode =
|
|
414
|
+
(typeof FailureReasonCode)[keyof typeof FailureReasonCode];
|
|
415
|
+
export interface FailedRequest {
|
|
416
|
+
RequestIdentifier?: string;
|
|
417
|
+
FailureReasonCode?: FailureReasonCode;
|
|
418
|
+
FailureReasonMessage?: string;
|
|
419
|
+
}
|
|
420
|
+
export interface SuccessfulRequest {
|
|
421
|
+
RequestIdentifier?: string;
|
|
422
|
+
ContactId?: string;
|
|
423
|
+
}
|
|
424
|
+
export interface BatchPutContactResponse {
|
|
425
|
+
SuccessfulRequestList?: SuccessfulRequest[];
|
|
426
|
+
FailedRequestList?: FailedRequest[];
|
|
427
|
+
}
|
|
428
|
+
export declare class IdempotencyException extends __BaseException {
|
|
429
|
+
readonly name: "IdempotencyException";
|
|
430
|
+
readonly $fault: "client";
|
|
431
|
+
Message?: string;
|
|
432
|
+
constructor(
|
|
433
|
+
opts: __ExceptionOptionType<IdempotencyException, __BaseException>
|
|
434
|
+
);
|
|
435
|
+
}
|
|
375
436
|
export interface ClaimPhoneNumberRequest {
|
|
376
437
|
TargetArn?: string;
|
|
377
438
|
InstanceId?: string;
|
|
@@ -384,14 +445,6 @@ export interface ClaimPhoneNumberResponse {
|
|
|
384
445
|
PhoneNumberId?: string;
|
|
385
446
|
PhoneNumberArn?: string;
|
|
386
447
|
}
|
|
387
|
-
export declare class IdempotencyException extends __BaseException {
|
|
388
|
-
readonly name: "IdempotencyException";
|
|
389
|
-
readonly $fault: "client";
|
|
390
|
-
Message?: string;
|
|
391
|
-
constructor(
|
|
392
|
-
opts: __ExceptionOptionType<IdempotencyException, __BaseException>
|
|
393
|
-
);
|
|
394
|
-
}
|
|
395
448
|
export interface CreateAgentStatusRequest {
|
|
396
449
|
InstanceId: string | undefined;
|
|
397
450
|
Name: string | undefined;
|
|
@@ -743,6 +796,22 @@ export interface CreateParticipantResponse {
|
|
|
743
796
|
ParticipantCredentials?: ParticipantTokenCredentials;
|
|
744
797
|
ParticipantId?: string;
|
|
745
798
|
}
|
|
799
|
+
export declare const RehydrationType: {
|
|
800
|
+
readonly ENTIRE_PAST_SESSION: "ENTIRE_PAST_SESSION";
|
|
801
|
+
readonly FROM_SEGMENT: "FROM_SEGMENT";
|
|
802
|
+
};
|
|
803
|
+
export type RehydrationType =
|
|
804
|
+
(typeof RehydrationType)[keyof typeof RehydrationType];
|
|
805
|
+
export interface CreatePersistentContactAssociationRequest {
|
|
806
|
+
InstanceId: string | undefined;
|
|
807
|
+
InitialContactId: string | undefined;
|
|
808
|
+
RehydrationType: RehydrationType | undefined;
|
|
809
|
+
SourceContactId: string | undefined;
|
|
810
|
+
ClientToken?: string;
|
|
811
|
+
}
|
|
812
|
+
export interface CreatePersistentContactAssociationResponse {
|
|
813
|
+
ContinuedFromContactId?: string;
|
|
814
|
+
}
|
|
746
815
|
export interface CreatePromptRequest {
|
|
747
816
|
InstanceId: string | undefined;
|
|
748
817
|
Name: string | undefined;
|
|
@@ -2002,81 +2071,6 @@ export declare const TrafficDistributionGroupStatus: {
|
|
|
2002
2071
|
};
|
|
2003
2072
|
export type TrafficDistributionGroupStatus =
|
|
2004
2073
|
(typeof TrafficDistributionGroupStatus)[keyof typeof TrafficDistributionGroupStatus];
|
|
2005
|
-
export interface TrafficDistributionGroup {
|
|
2006
|
-
Id?: string;
|
|
2007
|
-
Arn?: string;
|
|
2008
|
-
Name?: string;
|
|
2009
|
-
Description?: string;
|
|
2010
|
-
InstanceArn?: string;
|
|
2011
|
-
Status?: TrafficDistributionGroupStatus;
|
|
2012
|
-
Tags?: Record<string, string>;
|
|
2013
|
-
IsDefault?: boolean;
|
|
2014
|
-
}
|
|
2015
|
-
export interface DescribeTrafficDistributionGroupResponse {
|
|
2016
|
-
TrafficDistributionGroup?: TrafficDistributionGroup;
|
|
2017
|
-
}
|
|
2018
|
-
export interface DescribeUserRequest {
|
|
2019
|
-
UserId: string | undefined;
|
|
2020
|
-
InstanceId: string | undefined;
|
|
2021
|
-
}
|
|
2022
|
-
export interface User {
|
|
2023
|
-
Id?: string;
|
|
2024
|
-
Arn?: string;
|
|
2025
|
-
Username?: string;
|
|
2026
|
-
IdentityInfo?: UserIdentityInfo;
|
|
2027
|
-
PhoneConfig?: UserPhoneConfig;
|
|
2028
|
-
DirectoryUserId?: string;
|
|
2029
|
-
SecurityProfileIds?: string[];
|
|
2030
|
-
RoutingProfileId?: string;
|
|
2031
|
-
HierarchyGroupId?: string;
|
|
2032
|
-
Tags?: Record<string, string>;
|
|
2033
|
-
LastModifiedTime?: Date;
|
|
2034
|
-
LastModifiedRegion?: string;
|
|
2035
|
-
}
|
|
2036
|
-
export interface DescribeUserResponse {
|
|
2037
|
-
User?: User;
|
|
2038
|
-
}
|
|
2039
|
-
export interface DescribeUserHierarchyGroupRequest {
|
|
2040
|
-
HierarchyGroupId: string | undefined;
|
|
2041
|
-
InstanceId: string | undefined;
|
|
2042
|
-
}
|
|
2043
|
-
export interface HierarchyGroupSummary {
|
|
2044
|
-
Id?: string;
|
|
2045
|
-
Arn?: string;
|
|
2046
|
-
Name?: string;
|
|
2047
|
-
LastModifiedTime?: Date;
|
|
2048
|
-
LastModifiedRegion?: string;
|
|
2049
|
-
}
|
|
2050
|
-
export interface HierarchyPath {
|
|
2051
|
-
LevelOne?: HierarchyGroupSummary;
|
|
2052
|
-
LevelTwo?: HierarchyGroupSummary;
|
|
2053
|
-
LevelThree?: HierarchyGroupSummary;
|
|
2054
|
-
LevelFour?: HierarchyGroupSummary;
|
|
2055
|
-
LevelFive?: HierarchyGroupSummary;
|
|
2056
|
-
}
|
|
2057
|
-
export interface HierarchyGroup {
|
|
2058
|
-
Id?: string;
|
|
2059
|
-
Arn?: string;
|
|
2060
|
-
Name?: string;
|
|
2061
|
-
LevelId?: string;
|
|
2062
|
-
HierarchyPath?: HierarchyPath;
|
|
2063
|
-
Tags?: Record<string, string>;
|
|
2064
|
-
LastModifiedTime?: Date;
|
|
2065
|
-
LastModifiedRegion?: string;
|
|
2066
|
-
}
|
|
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
2074
|
export declare const CreateInstanceRequestFilterSensitiveLog: (
|
|
2081
2075
|
obj: CreateInstanceRequest
|
|
2082
2076
|
) => any;
|
|
@@ -23,11 +23,7 @@ import {
|
|
|
23
23
|
EvaluationScore,
|
|
24
24
|
EvaluationStatus,
|
|
25
25
|
EventSourceName,
|
|
26
|
-
HierarchyGroupSummary,
|
|
27
|
-
HierarchyLevel,
|
|
28
26
|
HoursOfOperation,
|
|
29
|
-
HoursOfOperationConfig,
|
|
30
|
-
InstanceAttributeType,
|
|
31
27
|
InstanceStatus,
|
|
32
28
|
InstanceStorageConfig,
|
|
33
29
|
InstanceStorageResourceType,
|
|
@@ -44,6 +40,7 @@ import {
|
|
|
44
40
|
QuickConnectType,
|
|
45
41
|
Reference,
|
|
46
42
|
ReferenceType,
|
|
43
|
+
RehydrationType,
|
|
47
44
|
RoutingProfile,
|
|
48
45
|
RoutingProfileQueueReference,
|
|
49
46
|
RulePublishStatus,
|
|
@@ -54,6 +51,7 @@ import {
|
|
|
54
51
|
TaskTemplateStatus,
|
|
55
52
|
TrafficDistributionGroupStatus,
|
|
56
53
|
UseCaseType,
|
|
54
|
+
UserIdentityInfo,
|
|
57
55
|
UserPhoneConfig,
|
|
58
56
|
View,
|
|
59
57
|
ViewStatus,
|
|
@@ -61,6 +59,81 @@ import {
|
|
|
61
59
|
VocabularyLanguageCode,
|
|
62
60
|
VocabularyState,
|
|
63
61
|
} from "./models_0";
|
|
62
|
+
export interface TrafficDistributionGroup {
|
|
63
|
+
Id?: string;
|
|
64
|
+
Arn?: string;
|
|
65
|
+
Name?: string;
|
|
66
|
+
Description?: string;
|
|
67
|
+
InstanceArn?: string;
|
|
68
|
+
Status?: TrafficDistributionGroupStatus;
|
|
69
|
+
Tags?: Record<string, string>;
|
|
70
|
+
IsDefault?: boolean;
|
|
71
|
+
}
|
|
72
|
+
export interface DescribeTrafficDistributionGroupResponse {
|
|
73
|
+
TrafficDistributionGroup?: TrafficDistributionGroup;
|
|
74
|
+
}
|
|
75
|
+
export interface DescribeUserRequest {
|
|
76
|
+
UserId: string | undefined;
|
|
77
|
+
InstanceId: string | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface User {
|
|
80
|
+
Id?: string;
|
|
81
|
+
Arn?: string;
|
|
82
|
+
Username?: string;
|
|
83
|
+
IdentityInfo?: UserIdentityInfo;
|
|
84
|
+
PhoneConfig?: UserPhoneConfig;
|
|
85
|
+
DirectoryUserId?: string;
|
|
86
|
+
SecurityProfileIds?: string[];
|
|
87
|
+
RoutingProfileId?: string;
|
|
88
|
+
HierarchyGroupId?: string;
|
|
89
|
+
Tags?: Record<string, string>;
|
|
90
|
+
LastModifiedTime?: Date;
|
|
91
|
+
LastModifiedRegion?: string;
|
|
92
|
+
}
|
|
93
|
+
export interface DescribeUserResponse {
|
|
94
|
+
User?: User;
|
|
95
|
+
}
|
|
96
|
+
export interface DescribeUserHierarchyGroupRequest {
|
|
97
|
+
HierarchyGroupId: string | undefined;
|
|
98
|
+
InstanceId: string | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface HierarchyGroupSummary {
|
|
101
|
+
Id?: string;
|
|
102
|
+
Arn?: string;
|
|
103
|
+
Name?: string;
|
|
104
|
+
LastModifiedTime?: Date;
|
|
105
|
+
LastModifiedRegion?: string;
|
|
106
|
+
}
|
|
107
|
+
export interface HierarchyPath {
|
|
108
|
+
LevelOne?: HierarchyGroupSummary;
|
|
109
|
+
LevelTwo?: HierarchyGroupSummary;
|
|
110
|
+
LevelThree?: HierarchyGroupSummary;
|
|
111
|
+
LevelFour?: HierarchyGroupSummary;
|
|
112
|
+
LevelFive?: HierarchyGroupSummary;
|
|
113
|
+
}
|
|
114
|
+
export interface HierarchyGroup {
|
|
115
|
+
Id?: string;
|
|
116
|
+
Arn?: string;
|
|
117
|
+
Name?: string;
|
|
118
|
+
LevelId?: string;
|
|
119
|
+
HierarchyPath?: HierarchyPath;
|
|
120
|
+
Tags?: Record<string, string>;
|
|
121
|
+
LastModifiedTime?: Date;
|
|
122
|
+
LastModifiedRegion?: string;
|
|
123
|
+
}
|
|
124
|
+
export interface DescribeUserHierarchyGroupResponse {
|
|
125
|
+
HierarchyGroup?: HierarchyGroup;
|
|
126
|
+
}
|
|
127
|
+
export interface DescribeUserHierarchyStructureRequest {
|
|
128
|
+
InstanceId: string | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface HierarchyLevel {
|
|
131
|
+
Id?: string;
|
|
132
|
+
Arn?: string;
|
|
133
|
+
Name?: string;
|
|
134
|
+
LastModifiedTime?: Date;
|
|
135
|
+
LastModifiedRegion?: string;
|
|
136
|
+
}
|
|
64
137
|
export interface HierarchyStructure {
|
|
65
138
|
LevelOne?: HierarchyLevel;
|
|
66
139
|
LevelTwo?: HierarchyLevel;
|
|
@@ -1436,12 +1509,6 @@ export interface ChatMessage {
|
|
|
1436
1509
|
export interface ParticipantDetails {
|
|
1437
1510
|
DisplayName: string | undefined;
|
|
1438
1511
|
}
|
|
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
1512
|
export interface PersistentChat {
|
|
1446
1513
|
RehydrationType?: RehydrationType;
|
|
1447
1514
|
SourceContactId?: string;
|
|
@@ -1571,9 +1638,13 @@ export declare class ContactNotFoundException extends __BaseException {
|
|
|
1571
1638
|
opts: __ExceptionOptionType<ContactNotFoundException, __BaseException>
|
|
1572
1639
|
);
|
|
1573
1640
|
}
|
|
1641
|
+
export interface DisconnectReason {
|
|
1642
|
+
Code?: string;
|
|
1643
|
+
}
|
|
1574
1644
|
export interface StopContactRequest {
|
|
1575
1645
|
ContactId: string | undefined;
|
|
1576
1646
|
InstanceId: string | undefined;
|
|
1647
|
+
DisconnectReason?: DisconnectReason;
|
|
1577
1648
|
}
|
|
1578
1649
|
export interface StopContactResponse {}
|
|
1579
1650
|
export interface StopContactRecordingRequest {
|
|
@@ -1680,63 +1751,6 @@ export interface UpdateContactFlowModuleContentRequest {
|
|
|
1680
1751
|
Content: string | undefined;
|
|
1681
1752
|
}
|
|
1682
1753
|
export interface UpdateContactFlowModuleContentResponse {}
|
|
1683
|
-
export interface UpdateContactFlowModuleMetadataRequest {
|
|
1684
|
-
InstanceId: string | undefined;
|
|
1685
|
-
ContactFlowModuleId: string | undefined;
|
|
1686
|
-
Name?: string;
|
|
1687
|
-
Description?: string;
|
|
1688
|
-
State?: ContactFlowModuleState;
|
|
1689
|
-
}
|
|
1690
|
-
export interface UpdateContactFlowModuleMetadataResponse {}
|
|
1691
|
-
export interface UpdateContactFlowNameRequest {
|
|
1692
|
-
InstanceId: string | undefined;
|
|
1693
|
-
ContactFlowId: string | undefined;
|
|
1694
|
-
Name?: string;
|
|
1695
|
-
Description?: string;
|
|
1696
|
-
}
|
|
1697
|
-
export interface UpdateContactFlowNameResponse {}
|
|
1698
|
-
export interface UpdateContactScheduleRequest {
|
|
1699
|
-
InstanceId: string | undefined;
|
|
1700
|
-
ContactId: string | undefined;
|
|
1701
|
-
ScheduledTime: Date | undefined;
|
|
1702
|
-
}
|
|
1703
|
-
export interface UpdateContactScheduleResponse {}
|
|
1704
|
-
export interface UpdateEvaluationFormResponse {
|
|
1705
|
-
EvaluationFormId: string | undefined;
|
|
1706
|
-
EvaluationFormArn: string | undefined;
|
|
1707
|
-
EvaluationFormVersion: number | undefined;
|
|
1708
|
-
}
|
|
1709
|
-
export interface UpdateHoursOfOperationRequest {
|
|
1710
|
-
InstanceId: string | undefined;
|
|
1711
|
-
HoursOfOperationId: string | undefined;
|
|
1712
|
-
Name?: string;
|
|
1713
|
-
Description?: string;
|
|
1714
|
-
TimeZone?: string;
|
|
1715
|
-
Config?: HoursOfOperationConfig[];
|
|
1716
|
-
}
|
|
1717
|
-
export interface UpdateInstanceAttributeRequest {
|
|
1718
|
-
InstanceId: string | undefined;
|
|
1719
|
-
AttributeType: InstanceAttributeType | undefined;
|
|
1720
|
-
Value: string | undefined;
|
|
1721
|
-
}
|
|
1722
|
-
export interface UpdateInstanceStorageConfigRequest {
|
|
1723
|
-
InstanceId: string | undefined;
|
|
1724
|
-
AssociationId: string | undefined;
|
|
1725
|
-
ResourceType: InstanceStorageResourceType | undefined;
|
|
1726
|
-
StorageConfig: InstanceStorageConfig | undefined;
|
|
1727
|
-
}
|
|
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
1754
|
export declare const DescribeViewResponseFilterSensitiveLog: (
|
|
1741
1755
|
obj: DescribeViewResponse
|
|
1742
1756
|
) => any;
|
|
@@ -2,10 +2,15 @@ import {
|
|
|
2
2
|
AgentAvailabilityTimer,
|
|
3
3
|
AgentConfig,
|
|
4
4
|
Application,
|
|
5
|
+
ContactFlowModuleState,
|
|
5
6
|
Evaluation,
|
|
6
7
|
EvaluationFormQuestion,
|
|
7
8
|
EvaluationFormScoringStrategy,
|
|
8
9
|
EvaluationFormVersionStatus,
|
|
10
|
+
HoursOfOperationConfig,
|
|
11
|
+
InstanceAttributeType,
|
|
12
|
+
InstanceStorageConfig,
|
|
13
|
+
InstanceStorageResourceType,
|
|
9
14
|
MediaConcurrency,
|
|
10
15
|
OutboundCallerConfig,
|
|
11
16
|
QueueStatus,
|
|
@@ -26,7 +31,6 @@ import {
|
|
|
26
31
|
import {
|
|
27
32
|
HierarchyGroupCondition,
|
|
28
33
|
HoursOfOperationSearchFilter,
|
|
29
|
-
ParticipantTimerType,
|
|
30
34
|
PromptSearchFilter,
|
|
31
35
|
QueueSearchFilter,
|
|
32
36
|
QuickConnectSearchFilter,
|
|
@@ -36,9 +40,65 @@ import {
|
|
|
36
40
|
SignInConfig,
|
|
37
41
|
StringCondition,
|
|
38
42
|
TelephonyConfig,
|
|
39
|
-
TimerEligibleParticipantRoles,
|
|
40
43
|
UserSearchFilter,
|
|
41
44
|
} from "./models_1";
|
|
45
|
+
export interface UpdateContactFlowModuleMetadataRequest {
|
|
46
|
+
InstanceId: string | undefined;
|
|
47
|
+
ContactFlowModuleId: string | undefined;
|
|
48
|
+
Name?: string;
|
|
49
|
+
Description?: string;
|
|
50
|
+
State?: ContactFlowModuleState;
|
|
51
|
+
}
|
|
52
|
+
export interface UpdateContactFlowModuleMetadataResponse {}
|
|
53
|
+
export interface UpdateContactFlowNameRequest {
|
|
54
|
+
InstanceId: string | undefined;
|
|
55
|
+
ContactFlowId: string | undefined;
|
|
56
|
+
Name?: string;
|
|
57
|
+
Description?: string;
|
|
58
|
+
}
|
|
59
|
+
export interface UpdateContactFlowNameResponse {}
|
|
60
|
+
export interface UpdateContactScheduleRequest {
|
|
61
|
+
InstanceId: string | undefined;
|
|
62
|
+
ContactId: string | undefined;
|
|
63
|
+
ScheduledTime: Date | undefined;
|
|
64
|
+
}
|
|
65
|
+
export interface UpdateContactScheduleResponse {}
|
|
66
|
+
export interface UpdateEvaluationFormResponse {
|
|
67
|
+
EvaluationFormId: string | undefined;
|
|
68
|
+
EvaluationFormArn: string | undefined;
|
|
69
|
+
EvaluationFormVersion: number | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface UpdateHoursOfOperationRequest {
|
|
72
|
+
InstanceId: string | undefined;
|
|
73
|
+
HoursOfOperationId: string | undefined;
|
|
74
|
+
Name?: string;
|
|
75
|
+
Description?: string;
|
|
76
|
+
TimeZone?: string;
|
|
77
|
+
Config?: HoursOfOperationConfig[];
|
|
78
|
+
}
|
|
79
|
+
export interface UpdateInstanceAttributeRequest {
|
|
80
|
+
InstanceId: string | undefined;
|
|
81
|
+
AttributeType: InstanceAttributeType | undefined;
|
|
82
|
+
Value: string | undefined;
|
|
83
|
+
}
|
|
84
|
+
export interface UpdateInstanceStorageConfigRequest {
|
|
85
|
+
InstanceId: string | undefined;
|
|
86
|
+
AssociationId: string | undefined;
|
|
87
|
+
ResourceType: InstanceStorageResourceType | undefined;
|
|
88
|
+
StorageConfig: InstanceStorageConfig | undefined;
|
|
89
|
+
}
|
|
90
|
+
export declare const TimerEligibleParticipantRoles: {
|
|
91
|
+
readonly AGENT: "AGENT";
|
|
92
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
93
|
+
};
|
|
94
|
+
export type TimerEligibleParticipantRoles =
|
|
95
|
+
(typeof TimerEligibleParticipantRoles)[keyof typeof TimerEligibleParticipantRoles];
|
|
96
|
+
export declare const ParticipantTimerType: {
|
|
97
|
+
readonly DISCONNECT_NONCUSTOMER: "DISCONNECT_NONCUSTOMER";
|
|
98
|
+
readonly IDLE: "IDLE";
|
|
99
|
+
};
|
|
100
|
+
export type ParticipantTimerType =
|
|
101
|
+
(typeof ParticipantTimerType)[keyof typeof ParticipantTimerType];
|
|
42
102
|
export declare const ParticipantTimerAction: {
|
|
43
103
|
readonly Unset: "Unset";
|
|
44
104
|
};
|
|
@@ -55,6 +55,10 @@ import {
|
|
|
55
55
|
BatchGetFlowAssociationCommandInput,
|
|
56
56
|
BatchGetFlowAssociationCommandOutput,
|
|
57
57
|
} from "../commands/BatchGetFlowAssociationCommand";
|
|
58
|
+
import {
|
|
59
|
+
BatchPutContactCommandInput,
|
|
60
|
+
BatchPutContactCommandOutput,
|
|
61
|
+
} from "../commands/BatchPutContactCommand";
|
|
58
62
|
import {
|
|
59
63
|
ClaimPhoneNumberCommandInput,
|
|
60
64
|
ClaimPhoneNumberCommandOutput,
|
|
@@ -91,6 +95,10 @@ import {
|
|
|
91
95
|
CreateParticipantCommandInput,
|
|
92
96
|
CreateParticipantCommandOutput,
|
|
93
97
|
} from "../commands/CreateParticipantCommand";
|
|
98
|
+
import {
|
|
99
|
+
CreatePersistentContactAssociationCommandInput,
|
|
100
|
+
CreatePersistentContactAssociationCommandOutput,
|
|
101
|
+
} from "../commands/CreatePersistentContactAssociationCommand";
|
|
94
102
|
import {
|
|
95
103
|
CreatePromptCommandInput,
|
|
96
104
|
CreatePromptCommandOutput,
|
|
@@ -903,6 +911,10 @@ export declare const se_BatchGetFlowAssociationCommand: (
|
|
|
903
911
|
input: BatchGetFlowAssociationCommandInput,
|
|
904
912
|
context: __SerdeContext
|
|
905
913
|
) => Promise<__HttpRequest>;
|
|
914
|
+
export declare const se_BatchPutContactCommand: (
|
|
915
|
+
input: BatchPutContactCommandInput,
|
|
916
|
+
context: __SerdeContext
|
|
917
|
+
) => Promise<__HttpRequest>;
|
|
906
918
|
export declare const se_ClaimPhoneNumberCommand: (
|
|
907
919
|
input: ClaimPhoneNumberCommandInput,
|
|
908
920
|
context: __SerdeContext
|
|
@@ -939,6 +951,10 @@ export declare const se_CreateParticipantCommand: (
|
|
|
939
951
|
input: CreateParticipantCommandInput,
|
|
940
952
|
context: __SerdeContext
|
|
941
953
|
) => Promise<__HttpRequest>;
|
|
954
|
+
export declare const se_CreatePersistentContactAssociationCommand: (
|
|
955
|
+
input: CreatePersistentContactAssociationCommandInput,
|
|
956
|
+
context: __SerdeContext
|
|
957
|
+
) => Promise<__HttpRequest>;
|
|
942
958
|
export declare const se_CreatePromptCommand: (
|
|
943
959
|
input: CreatePromptCommandInput,
|
|
944
960
|
context: __SerdeContext
|
|
@@ -1751,6 +1767,10 @@ export declare const de_BatchGetFlowAssociationCommand: (
|
|
|
1751
1767
|
output: __HttpResponse,
|
|
1752
1768
|
context: __SerdeContext
|
|
1753
1769
|
) => Promise<BatchGetFlowAssociationCommandOutput>;
|
|
1770
|
+
export declare const de_BatchPutContactCommand: (
|
|
1771
|
+
output: __HttpResponse,
|
|
1772
|
+
context: __SerdeContext
|
|
1773
|
+
) => Promise<BatchPutContactCommandOutput>;
|
|
1754
1774
|
export declare const de_ClaimPhoneNumberCommand: (
|
|
1755
1775
|
output: __HttpResponse,
|
|
1756
1776
|
context: __SerdeContext
|
|
@@ -1787,6 +1807,10 @@ export declare const de_CreateParticipantCommand: (
|
|
|
1787
1807
|
output: __HttpResponse,
|
|
1788
1808
|
context: __SerdeContext
|
|
1789
1809
|
) => Promise<CreateParticipantCommandOutput>;
|
|
1810
|
+
export declare const de_CreatePersistentContactAssociationCommand: (
|
|
1811
|
+
output: __HttpResponse,
|
|
1812
|
+
context: __SerdeContext
|
|
1813
|
+
) => Promise<CreatePersistentContactAssociationCommandOutput>;
|
|
1790
1814
|
export declare const de_CreatePromptCommand: (
|
|
1791
1815
|
output: __HttpResponse,
|
|
1792
1816
|
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.444.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",
|