@aws-sdk/client-connect 3.968.0 → 3.970.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 +21 -0
- package/dist-cjs/index.js +814 -636
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/AssociateHoursOfOperationsCommand.js +16 -0
- package/dist-es/commands/DisassociateHoursOfOperationsCommand.js +16 -0
- package/dist-es/commands/ListChildHoursOfOperationsCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +14 -0
- package/dist-es/pagination/ListChildHoursOfOperationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +743 -636
- package/dist-types/Connect.d.ts +21 -0
- package/dist-types/ConnectClient.d.ts +5 -2
- package/dist-types/commands/AssociateHoursOfOperationsCommand.d.ts +99 -0
- package/dist-types/commands/CreateHoursOfOperationCommand.d.ts +8 -0
- package/dist-types/commands/CreateHoursOfOperationOverrideCommand.d.ts +16 -0
- package/dist-types/commands/DeleteContactFlowCommand.d.ts +1 -1
- package/dist-types/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +7 -0
- package/dist-types/commands/DescribeHoursOfOperationOverrideCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateHoursOfOperationsCommand.d.ts +94 -0
- package/dist-types/commands/GetEffectiveHoursOfOperationsCommand.d.ts +19 -0
- package/dist-types/commands/ListChildHoursOfOperationsCommand.d.ts +103 -0
- package/dist-types/commands/ListContactEvaluationsCommand.d.ts +2 -1
- package/dist-types/commands/ListContactFlowModuleAliasesCommand.d.ts +1 -1
- package/dist-types/commands/ListContactFlowModuleVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/commands/ListHoursOfOperationOverridesCommand.d.ts +16 -0
- package/dist-types/commands/SearchHoursOfOperationOverridesCommand.d.ts +16 -0
- package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +7 -0
- package/dist-types/commands/StartContactRecordingCommand.d.ts +1 -1
- package/dist-types/commands/StartContactStreamingCommand.d.ts +1 -1
- package/dist-types/commands/StartEmailContactCommand.d.ts +1 -2
- package/dist-types/commands/StartOutboundChatContactCommand.d.ts +1 -2
- package/dist-types/commands/UpdateHoursOfOperationOverrideCommand.d.ts +16 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/enums.d.ts +38 -0
- package/dist-types/models/models_0.d.ts +104 -41
- package/dist-types/models/models_1.d.ts +200 -226
- package/dist-types/models/models_2.d.ts +226 -175
- package/dist-types/models/models_3.d.ts +188 -3
- package/dist-types/pagination/ListChildHoursOfOperationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +13 -0
- package/dist-types/ts3.4/Connect.d.ts +51 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/AssociateHoursOfOperationsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteContactFlowCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateHoursOfOperationsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListChildHoursOfOperationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListContactEvaluationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListContactFlowModuleAliasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListContactFlowModuleVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartContactRecordingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartContactStreamingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartEmailContactCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +23 -10
- package/dist-types/ts3.4/models/models_1.d.ts +49 -57
- package/dist-types/ts3.4/models/models_2.d.ts +59 -42
- package/dist-types/ts3.4/models/models_3.d.ts +49 -4
- package/dist-types/ts3.4/pagination/ListChildHoursOfOperationsPaginator.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 +13 -0
- package/package.json +33 -33
|
@@ -40,6 +40,8 @@ import {
|
|
|
40
40
|
MediaStreamType,
|
|
41
41
|
MediaType,
|
|
42
42
|
NextContactType,
|
|
43
|
+
OperationalStatus,
|
|
44
|
+
OverrideType,
|
|
43
45
|
ParticipantType,
|
|
44
46
|
PhoneNumberCountryCode,
|
|
45
47
|
PhoneNumberType,
|
|
@@ -83,6 +85,7 @@ import {
|
|
|
83
85
|
PredefinedAttributeValues,
|
|
84
86
|
QueueReference,
|
|
85
87
|
QuickConnectConfig,
|
|
88
|
+
RecurrenceConfig,
|
|
86
89
|
RuleTriggerEventSource,
|
|
87
90
|
TaskTemplateConstraints,
|
|
88
91
|
TaskTemplateDefaults,
|
|
@@ -108,6 +111,16 @@ import {
|
|
|
108
111
|
SuccessfulBatchAssociationSummary,
|
|
109
112
|
TaskTemplateField,
|
|
110
113
|
} from "./models_0";
|
|
114
|
+
export interface DeleteContactFlowRequest {
|
|
115
|
+
InstanceId: string | undefined;
|
|
116
|
+
ContactFlowId: string | undefined;
|
|
117
|
+
}
|
|
118
|
+
export interface DeleteContactFlowResponse {}
|
|
119
|
+
export interface DeleteContactFlowModuleRequest {
|
|
120
|
+
InstanceId: string | undefined;
|
|
121
|
+
ContactFlowModuleId: string | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface DeleteContactFlowModuleResponse {}
|
|
111
124
|
export interface DeleteContactFlowModuleAliasRequest {
|
|
112
125
|
InstanceId: string | undefined;
|
|
113
126
|
ContactFlowModuleId: string | undefined;
|
|
@@ -741,6 +754,11 @@ export interface DescribeHoursOfOperationRequest {
|
|
|
741
754
|
InstanceId: string | undefined;
|
|
742
755
|
HoursOfOperationId: string | undefined;
|
|
743
756
|
}
|
|
757
|
+
export interface HoursOfOperationsIdentifier {
|
|
758
|
+
Name: string | undefined;
|
|
759
|
+
Id: string | undefined;
|
|
760
|
+
Arn?: string | undefined;
|
|
761
|
+
}
|
|
744
762
|
export interface HoursOfOperation {
|
|
745
763
|
HoursOfOperationId?: string | undefined;
|
|
746
764
|
HoursOfOperationArn?: string | undefined;
|
|
@@ -748,6 +766,7 @@ export interface HoursOfOperation {
|
|
|
748
766
|
Description?: string | undefined;
|
|
749
767
|
TimeZone?: string | undefined;
|
|
750
768
|
Config?: HoursOfOperationConfig[] | undefined;
|
|
769
|
+
ParentHoursOfOperations?: HoursOfOperationsIdentifier[] | undefined;
|
|
751
770
|
Tags?: Record<string, string> | undefined;
|
|
752
771
|
LastModifiedTime?: Date | undefined;
|
|
753
772
|
LastModifiedRegion?: string | undefined;
|
|
@@ -769,6 +788,8 @@ export interface HoursOfOperationOverride {
|
|
|
769
788
|
Config?: HoursOfOperationOverrideConfig[] | undefined;
|
|
770
789
|
EffectiveFrom?: string | undefined;
|
|
771
790
|
EffectiveTill?: string | undefined;
|
|
791
|
+
RecurrenceConfig?: RecurrenceConfig | undefined;
|
|
792
|
+
OverrideType?: OverrideType | undefined;
|
|
772
793
|
}
|
|
773
794
|
export interface DescribeHoursOfOperationOverrideResponse {
|
|
774
795
|
HoursOfOperationOverride?: HoursOfOperationOverride | undefined;
|
|
@@ -1153,6 +1174,11 @@ export interface DisassociateFlowRequest {
|
|
|
1153
1174
|
ResourceType: FlowAssociationResourceType | undefined;
|
|
1154
1175
|
}
|
|
1155
1176
|
export interface DisassociateFlowResponse {}
|
|
1177
|
+
export interface DisassociateHoursOfOperationsRequest {
|
|
1178
|
+
InstanceId: string | undefined;
|
|
1179
|
+
HoursOfOperationId: string | undefined;
|
|
1180
|
+
ParentHoursOfOperationIds: string[] | undefined;
|
|
1181
|
+
}
|
|
1156
1182
|
export interface DisassociateInstanceStorageConfigRequest {
|
|
1157
1183
|
InstanceId: string | undefined;
|
|
1158
1184
|
AssociationId: string | undefined;
|
|
@@ -1430,8 +1456,19 @@ export interface EffectiveHoursOfOperations {
|
|
|
1430
1456
|
Date?: string | undefined;
|
|
1431
1457
|
OperationalHours?: OperationalHour[] | undefined;
|
|
1432
1458
|
}
|
|
1459
|
+
export interface OverrideHour {
|
|
1460
|
+
Start?: OverrideTimeSlice | undefined;
|
|
1461
|
+
End?: OverrideTimeSlice | undefined;
|
|
1462
|
+
OverrideName?: string | undefined;
|
|
1463
|
+
OperationalStatus?: OperationalStatus | undefined;
|
|
1464
|
+
}
|
|
1465
|
+
export interface EffectiveOverrideHours {
|
|
1466
|
+
Date?: string | undefined;
|
|
1467
|
+
OverrideHours?: OverrideHour[] | undefined;
|
|
1468
|
+
}
|
|
1433
1469
|
export interface GetEffectiveHoursOfOperationsResponse {
|
|
1434
1470
|
EffectiveHoursOfOperationList?: EffectiveHoursOfOperations[] | undefined;
|
|
1471
|
+
EffectiveOverrideHoursList?: EffectiveOverrideHours[] | undefined;
|
|
1435
1472
|
TimeZone?: string | undefined;
|
|
1436
1473
|
}
|
|
1437
1474
|
export interface GetFederationTokenRequest {
|
|
@@ -1709,6 +1746,18 @@ export interface ListBotsResponse {
|
|
|
1709
1746
|
LexBots?: LexBotConfig[] | undefined;
|
|
1710
1747
|
NextToken?: string | undefined;
|
|
1711
1748
|
}
|
|
1749
|
+
export interface ListChildHoursOfOperationsRequest {
|
|
1750
|
+
InstanceId: string | undefined;
|
|
1751
|
+
HoursOfOperationId: string | undefined;
|
|
1752
|
+
NextToken?: string | undefined;
|
|
1753
|
+
MaxResults?: number | undefined;
|
|
1754
|
+
}
|
|
1755
|
+
export interface ListChildHoursOfOperationsResponse {
|
|
1756
|
+
NextToken?: string | undefined;
|
|
1757
|
+
ChildHoursOfOperationsSummaryList?: HoursOfOperationsIdentifier[] | undefined;
|
|
1758
|
+
LastModifiedTime?: Date | undefined;
|
|
1759
|
+
LastModifiedRegion?: string | undefined;
|
|
1760
|
+
}
|
|
1712
1761
|
export interface ListContactEvaluationsRequest {
|
|
1713
1762
|
InstanceId: string | undefined;
|
|
1714
1763
|
ContactId: string | undefined;
|
|
@@ -1736,60 +1785,3 @@ export interface EvaluationSummary {
|
|
|
1736
1785
|
LastModifiedTime: Date | undefined;
|
|
1737
1786
|
ContactParticipant?: EvaluationContactParticipant | undefined;
|
|
1738
1787
|
}
|
|
1739
|
-
export interface ListContactEvaluationsResponse {
|
|
1740
|
-
EvaluationSummaryList: EvaluationSummary[] | undefined;
|
|
1741
|
-
NextToken?: string | undefined;
|
|
1742
|
-
}
|
|
1743
|
-
export interface ListContactFlowModuleAliasesRequest {
|
|
1744
|
-
InstanceId: string | undefined;
|
|
1745
|
-
ContactFlowModuleId: string | undefined;
|
|
1746
|
-
NextToken?: string | undefined;
|
|
1747
|
-
MaxResults?: number | undefined;
|
|
1748
|
-
}
|
|
1749
|
-
export interface ContactFlowModuleAliasSummary {
|
|
1750
|
-
Arn?: string | undefined;
|
|
1751
|
-
AliasId?: string | undefined;
|
|
1752
|
-
Version?: number | undefined;
|
|
1753
|
-
AliasName?: string | undefined;
|
|
1754
|
-
AliasDescription?: string | undefined;
|
|
1755
|
-
LastModifiedTime?: Date | undefined;
|
|
1756
|
-
}
|
|
1757
|
-
export interface ListContactFlowModuleAliasesResponse {
|
|
1758
|
-
ContactFlowModuleAliasSummaryList?:
|
|
1759
|
-
| ContactFlowModuleAliasSummary[]
|
|
1760
|
-
| undefined;
|
|
1761
|
-
NextToken?: string | undefined;
|
|
1762
|
-
}
|
|
1763
|
-
export interface ListContactFlowModulesRequest {
|
|
1764
|
-
InstanceId: string | undefined;
|
|
1765
|
-
NextToken?: string | undefined;
|
|
1766
|
-
MaxResults?: number | undefined;
|
|
1767
|
-
ContactFlowModuleState?: ContactFlowModuleState | undefined;
|
|
1768
|
-
}
|
|
1769
|
-
export interface ContactFlowModuleSummary {
|
|
1770
|
-
Id?: string | undefined;
|
|
1771
|
-
Arn?: string | undefined;
|
|
1772
|
-
Name?: string | undefined;
|
|
1773
|
-
State?: ContactFlowModuleState | undefined;
|
|
1774
|
-
}
|
|
1775
|
-
export interface ListContactFlowModulesResponse {
|
|
1776
|
-
ContactFlowModulesSummaryList?: ContactFlowModuleSummary[] | undefined;
|
|
1777
|
-
NextToken?: string | undefined;
|
|
1778
|
-
}
|
|
1779
|
-
export interface ListContactFlowModuleVersionsRequest {
|
|
1780
|
-
InstanceId: string | undefined;
|
|
1781
|
-
ContactFlowModuleId: string | undefined;
|
|
1782
|
-
NextToken?: string | undefined;
|
|
1783
|
-
MaxResults?: number | undefined;
|
|
1784
|
-
}
|
|
1785
|
-
export interface ContactFlowModuleVersionSummary {
|
|
1786
|
-
Arn?: string | undefined;
|
|
1787
|
-
VersionDescription?: string | undefined;
|
|
1788
|
-
Version?: number | undefined;
|
|
1789
|
-
}
|
|
1790
|
-
export interface ListContactFlowModuleVersionsResponse {
|
|
1791
|
-
ContactFlowModuleVersionSummaryList?:
|
|
1792
|
-
| ContactFlowModuleVersionSummary[]
|
|
1793
|
-
| undefined;
|
|
1794
|
-
NextToken?: string | undefined;
|
|
1795
|
-
}
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
BooleanComparisonType,
|
|
5
5
|
Channel,
|
|
6
6
|
ChatEventType,
|
|
7
|
+
ContactFlowModuleState,
|
|
7
8
|
ContactFlowState,
|
|
8
9
|
ContactFlowStatus,
|
|
9
10
|
ContactFlowType,
|
|
@@ -17,7 +18,6 @@ import {
|
|
|
17
18
|
DateTimeComparisonType,
|
|
18
19
|
DecimalComparisonType,
|
|
19
20
|
DirectoryType,
|
|
20
|
-
EmailHeaderType,
|
|
21
21
|
EntityType,
|
|
22
22
|
EvaluationFormLanguageCode,
|
|
23
23
|
EvaluationFormVersionStatus,
|
|
@@ -27,7 +27,6 @@ import {
|
|
|
27
27
|
FileStatusType,
|
|
28
28
|
FileUseCaseType,
|
|
29
29
|
HierarchyGroupMatchType,
|
|
30
|
-
InboundMessageSourceType,
|
|
31
30
|
InstanceStatus,
|
|
32
31
|
InstanceStorageResourceType,
|
|
33
32
|
IntegrationType,
|
|
@@ -100,6 +99,7 @@ import {
|
|
|
100
99
|
ContactFlowModule,
|
|
101
100
|
DataTable,
|
|
102
101
|
DataTableAttribute,
|
|
102
|
+
EvaluationSummary,
|
|
103
103
|
HierarchyGroup,
|
|
104
104
|
HierarchyGroupSummary,
|
|
105
105
|
HoursOfOperation,
|
|
@@ -110,6 +110,63 @@ import {
|
|
|
110
110
|
QuickConnect,
|
|
111
111
|
RoutingProfile,
|
|
112
112
|
} from "./models_1";
|
|
113
|
+
export interface ListContactEvaluationsResponse {
|
|
114
|
+
EvaluationSummaryList: EvaluationSummary[] | undefined;
|
|
115
|
+
NextToken?: string | undefined;
|
|
116
|
+
}
|
|
117
|
+
export interface ListContactFlowModuleAliasesRequest {
|
|
118
|
+
InstanceId: string | undefined;
|
|
119
|
+
ContactFlowModuleId: string | undefined;
|
|
120
|
+
NextToken?: string | undefined;
|
|
121
|
+
MaxResults?: number | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface ContactFlowModuleAliasSummary {
|
|
124
|
+
Arn?: string | undefined;
|
|
125
|
+
AliasId?: string | undefined;
|
|
126
|
+
Version?: number | undefined;
|
|
127
|
+
AliasName?: string | undefined;
|
|
128
|
+
AliasDescription?: string | undefined;
|
|
129
|
+
LastModifiedTime?: Date | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface ListContactFlowModuleAliasesResponse {
|
|
132
|
+
ContactFlowModuleAliasSummaryList?:
|
|
133
|
+
| ContactFlowModuleAliasSummary[]
|
|
134
|
+
| undefined;
|
|
135
|
+
NextToken?: string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface ListContactFlowModulesRequest {
|
|
138
|
+
InstanceId: string | undefined;
|
|
139
|
+
NextToken?: string | undefined;
|
|
140
|
+
MaxResults?: number | undefined;
|
|
141
|
+
ContactFlowModuleState?: ContactFlowModuleState | undefined;
|
|
142
|
+
}
|
|
143
|
+
export interface ContactFlowModuleSummary {
|
|
144
|
+
Id?: string | undefined;
|
|
145
|
+
Arn?: string | undefined;
|
|
146
|
+
Name?: string | undefined;
|
|
147
|
+
State?: ContactFlowModuleState | undefined;
|
|
148
|
+
}
|
|
149
|
+
export interface ListContactFlowModulesResponse {
|
|
150
|
+
ContactFlowModulesSummaryList?: ContactFlowModuleSummary[] | undefined;
|
|
151
|
+
NextToken?: string | undefined;
|
|
152
|
+
}
|
|
153
|
+
export interface ListContactFlowModuleVersionsRequest {
|
|
154
|
+
InstanceId: string | undefined;
|
|
155
|
+
ContactFlowModuleId: string | undefined;
|
|
156
|
+
NextToken?: string | undefined;
|
|
157
|
+
MaxResults?: number | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface ContactFlowModuleVersionSummary {
|
|
160
|
+
Arn?: string | undefined;
|
|
161
|
+
VersionDescription?: string | undefined;
|
|
162
|
+
Version?: number | undefined;
|
|
163
|
+
}
|
|
164
|
+
export interface ListContactFlowModuleVersionsResponse {
|
|
165
|
+
ContactFlowModuleVersionSummaryList?:
|
|
166
|
+
| ContactFlowModuleVersionSummary[]
|
|
167
|
+
| undefined;
|
|
168
|
+
NextToken?: string | undefined;
|
|
169
|
+
}
|
|
113
170
|
export interface ListContactFlowsRequest {
|
|
114
171
|
InstanceId: string | undefined;
|
|
115
172
|
ContactFlowTypes?: ContactFlowType[] | undefined;
|
|
@@ -1875,43 +1932,3 @@ export interface VoiceRecordingConfiguration {
|
|
|
1875
1932
|
VoiceRecordingTrack?: VoiceRecordingTrack | undefined;
|
|
1876
1933
|
IvrRecordingTrack?: IvrRecordingTrack | undefined;
|
|
1877
1934
|
}
|
|
1878
|
-
export interface StartContactRecordingRequest {
|
|
1879
|
-
InstanceId: string | undefined;
|
|
1880
|
-
ContactId: string | undefined;
|
|
1881
|
-
InitialContactId: string | undefined;
|
|
1882
|
-
VoiceRecordingConfiguration: VoiceRecordingConfiguration | undefined;
|
|
1883
|
-
}
|
|
1884
|
-
export interface StartContactRecordingResponse {}
|
|
1885
|
-
export interface StartContactStreamingRequest {
|
|
1886
|
-
InstanceId: string | undefined;
|
|
1887
|
-
ContactId: string | undefined;
|
|
1888
|
-
ChatStreamingConfiguration: ChatStreamingConfiguration | undefined;
|
|
1889
|
-
ClientToken?: string | undefined;
|
|
1890
|
-
}
|
|
1891
|
-
export interface StartContactStreamingResponse {
|
|
1892
|
-
StreamingId: string | undefined;
|
|
1893
|
-
}
|
|
1894
|
-
export interface InboundAdditionalRecipients {
|
|
1895
|
-
ToAddresses?: EmailAddressInfo[] | undefined;
|
|
1896
|
-
CcAddresses?: EmailAddressInfo[] | undefined;
|
|
1897
|
-
}
|
|
1898
|
-
export interface EmailAttachment {
|
|
1899
|
-
FileName: string | undefined;
|
|
1900
|
-
S3Url: string | undefined;
|
|
1901
|
-
}
|
|
1902
|
-
export interface InboundRawMessage {
|
|
1903
|
-
Subject: string | undefined;
|
|
1904
|
-
Body: string | undefined;
|
|
1905
|
-
ContentType: string | undefined;
|
|
1906
|
-
Headers?: Partial<Record<EmailHeaderType, string>> | undefined;
|
|
1907
|
-
}
|
|
1908
|
-
export interface InboundEmailContent {
|
|
1909
|
-
MessageSourceType: InboundMessageSourceType | undefined;
|
|
1910
|
-
RawMessage?: InboundRawMessage | undefined;
|
|
1911
|
-
}
|
|
1912
|
-
export interface StartEmailContactResponse {
|
|
1913
|
-
ContactId?: string | undefined;
|
|
1914
|
-
}
|
|
1915
|
-
export interface StartOutboundChatContactResponse {
|
|
1916
|
-
ContactId?: string | undefined;
|
|
1917
|
-
}
|
|
@@ -13,14 +13,17 @@ import {
|
|
|
13
13
|
DataTableAttributeValueType,
|
|
14
14
|
DataTableLockLevel,
|
|
15
15
|
DisconnectOnCustomerExitParticipantType,
|
|
16
|
+
EmailHeaderType,
|
|
16
17
|
EvaluationFormItemEnablementAction,
|
|
17
18
|
EvaluationFormItemEnablementOperator,
|
|
18
19
|
EvaluationFormQuestionType,
|
|
19
20
|
EvaluationFormVersionStatus,
|
|
21
|
+
InboundMessageSourceType,
|
|
20
22
|
InitiateAs,
|
|
21
23
|
InstanceAttributeType,
|
|
22
24
|
InstanceStorageResourceType,
|
|
23
25
|
MeetingFeatureStatus,
|
|
26
|
+
OverrideType,
|
|
24
27
|
ParticipantTimerAction,
|
|
25
28
|
ParticipantTimerType,
|
|
26
29
|
QueueStatus,
|
|
@@ -56,6 +59,7 @@ import {
|
|
|
56
59
|
OutboundStrategy,
|
|
57
60
|
PredefinedAttributeValues,
|
|
58
61
|
QuickConnectConfig,
|
|
62
|
+
RecurrenceConfig,
|
|
59
63
|
StringCondition,
|
|
60
64
|
TaskTemplateConstraints,
|
|
61
65
|
TaskTemplateDefaults,
|
|
@@ -105,6 +109,7 @@ import {
|
|
|
105
109
|
import {
|
|
106
110
|
BooleanCondition,
|
|
107
111
|
ChatMessage,
|
|
112
|
+
ChatStreamingConfiguration,
|
|
108
113
|
ContactFlowModuleSearchFilter,
|
|
109
114
|
ContactFlowSearchFilter,
|
|
110
115
|
ContactSearchSummaryAgentInfo,
|
|
@@ -113,14 +118,11 @@ import {
|
|
|
113
118
|
DateCondition,
|
|
114
119
|
DateTimeCondition,
|
|
115
120
|
DecimalCondition,
|
|
116
|
-
EmailAddressInfo,
|
|
117
121
|
EmailAddressSearchFilter,
|
|
118
122
|
EvaluationFormSearchFilter,
|
|
119
123
|
EvaluationSearchFilter,
|
|
120
124
|
HierarchyGroupCondition,
|
|
121
125
|
HoursOfOperationSearchFilter,
|
|
122
|
-
InboundAdditionalRecipients,
|
|
123
|
-
InboundEmailContent,
|
|
124
126
|
ListCondition,
|
|
125
127
|
NumberCondition,
|
|
126
128
|
OutboundAdditionalRecipients,
|
|
@@ -137,10 +139,51 @@ import {
|
|
|
137
139
|
UserHierarchyGroupSearchFilter,
|
|
138
140
|
UserSearchFilter,
|
|
139
141
|
ViewSearchFilter,
|
|
142
|
+
VoiceRecordingConfiguration,
|
|
140
143
|
WorkspaceAssociationSearchFilter,
|
|
141
144
|
WorkspaceSearchFilter,
|
|
142
|
-
|
|
145
|
+
EmailAddressInfo,
|
|
143
146
|
} from "./models_2";
|
|
147
|
+
export interface StartContactRecordingRequest {
|
|
148
|
+
InstanceId: string | undefined;
|
|
149
|
+
ContactId: string | undefined;
|
|
150
|
+
InitialContactId: string | undefined;
|
|
151
|
+
VoiceRecordingConfiguration: VoiceRecordingConfiguration | undefined;
|
|
152
|
+
}
|
|
153
|
+
export interface StartContactRecordingResponse {}
|
|
154
|
+
export interface StartContactStreamingRequest {
|
|
155
|
+
InstanceId: string | undefined;
|
|
156
|
+
ContactId: string | undefined;
|
|
157
|
+
ChatStreamingConfiguration: ChatStreamingConfiguration | undefined;
|
|
158
|
+
ClientToken?: string | undefined;
|
|
159
|
+
}
|
|
160
|
+
export interface StartContactStreamingResponse {
|
|
161
|
+
StreamingId: string | undefined;
|
|
162
|
+
}
|
|
163
|
+
export interface InboundAdditionalRecipients {
|
|
164
|
+
ToAddresses?: EmailAddressInfo[] | undefined;
|
|
165
|
+
CcAddresses?: EmailAddressInfo[] | undefined;
|
|
166
|
+
}
|
|
167
|
+
export interface EmailAttachment {
|
|
168
|
+
FileName: string | undefined;
|
|
169
|
+
S3Url: string | undefined;
|
|
170
|
+
}
|
|
171
|
+
export interface InboundRawMessage {
|
|
172
|
+
Subject: string | undefined;
|
|
173
|
+
Body: string | undefined;
|
|
174
|
+
ContentType: string | undefined;
|
|
175
|
+
Headers?: Partial<Record<EmailHeaderType, string>> | undefined;
|
|
176
|
+
}
|
|
177
|
+
export interface InboundEmailContent {
|
|
178
|
+
MessageSourceType: InboundMessageSourceType | undefined;
|
|
179
|
+
RawMessage?: InboundRawMessage | undefined;
|
|
180
|
+
}
|
|
181
|
+
export interface StartEmailContactResponse {
|
|
182
|
+
ContactId?: string | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface StartOutboundChatContactResponse {
|
|
185
|
+
ContactId?: string | undefined;
|
|
186
|
+
}
|
|
144
187
|
export interface StartOutboundEmailContactRequest {
|
|
145
188
|
InstanceId: string | undefined;
|
|
146
189
|
ContactId: string | undefined;
|
|
@@ -492,6 +535,8 @@ export interface UpdateHoursOfOperationOverrideRequest {
|
|
|
492
535
|
Config?: HoursOfOperationOverrideConfig[] | undefined;
|
|
493
536
|
EffectiveFrom?: string | undefined;
|
|
494
537
|
EffectiveTill?: string | undefined;
|
|
538
|
+
RecurrenceConfig?: RecurrenceConfig | undefined;
|
|
539
|
+
OverrideType?: OverrideType | undefined;
|
|
495
540
|
}
|
|
496
541
|
export interface UpdateInstanceAttributeRequest {
|
|
497
542
|
InstanceId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListChildHoursOfOperationsCommandInput,
|
|
4
|
+
ListChildHoursOfOperationsCommandOutput,
|
|
5
|
+
} from "../commands/ListChildHoursOfOperationsCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListChildHoursOfOperations: (
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: ListChildHoursOfOperationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListChildHoursOfOperationsCommandOutput>;
|
|
@@ -8,6 +8,7 @@ export * from "./ListAgentStatusesPaginator";
|
|
|
8
8
|
export * from "./ListApprovedOriginsPaginator";
|
|
9
9
|
export * from "./ListAuthenticationProfilesPaginator";
|
|
10
10
|
export * from "./ListBotsPaginator";
|
|
11
|
+
export * from "./ListChildHoursOfOperationsPaginator";
|
|
11
12
|
export * from "./ListContactEvaluationsPaginator";
|
|
12
13
|
export * from "./ListContactFlowModuleAliasesPaginator";
|
|
13
14
|
export * from "./ListContactFlowModulesPaginator";
|
|
@@ -45,6 +45,7 @@ export declare var AssociateEmailAddressAliasRequest$: StaticStructureSchema;
|
|
|
45
45
|
export declare var AssociateEmailAddressAliasResponse$: StaticStructureSchema;
|
|
46
46
|
export declare var AssociateFlowRequest$: StaticStructureSchema;
|
|
47
47
|
export declare var AssociateFlowResponse$: StaticStructureSchema;
|
|
48
|
+
export declare var AssociateHoursOfOperationsRequest$: StaticStructureSchema;
|
|
48
49
|
export declare var AssociateInstanceStorageConfigRequest$: StaticStructureSchema;
|
|
49
50
|
export declare var AssociateInstanceStorageConfigResponse$: StaticStructureSchema;
|
|
50
51
|
export declare var AssociateLambdaFunctionRequest$: StaticStructureSchema;
|
|
@@ -376,6 +377,7 @@ export declare var DisassociateEmailAddressAliasRequest$: StaticStructureSchema;
|
|
|
376
377
|
export declare var DisassociateEmailAddressAliasResponse$: StaticStructureSchema;
|
|
377
378
|
export declare var DisassociateFlowRequest$: StaticStructureSchema;
|
|
378
379
|
export declare var DisassociateFlowResponse$: StaticStructureSchema;
|
|
380
|
+
export declare var DisassociateHoursOfOperationsRequest$: StaticStructureSchema;
|
|
379
381
|
export declare var DisassociateInstanceStorageConfigRequest$: StaticStructureSchema;
|
|
380
382
|
export declare var DisassociateLambdaFunctionRequest$: StaticStructureSchema;
|
|
381
383
|
export declare var DisassociateLexBotRequest$: StaticStructureSchema;
|
|
@@ -397,6 +399,7 @@ export declare var Distribution$: StaticStructureSchema;
|
|
|
397
399
|
export declare var DownloadUrlMetadata$: StaticStructureSchema;
|
|
398
400
|
export declare var DuplicateResourceException$: StaticErrorSchema;
|
|
399
401
|
export declare var EffectiveHoursOfOperations$: StaticStructureSchema;
|
|
402
|
+
export declare var EffectiveOverrideHours$: StaticStructureSchema;
|
|
400
403
|
export declare var EmailAddressInfo$: StaticStructureSchema;
|
|
401
404
|
export declare var EmailAddressMetadata$: StaticStructureSchema;
|
|
402
405
|
export declare var EmailAddressSearchCriteria$: StaticStructureSchema;
|
|
@@ -527,6 +530,7 @@ export declare var HoursOfOperationOverrideConfig$: StaticStructureSchema;
|
|
|
527
530
|
export declare var HoursOfOperationOverrideSearchCriteria$: StaticStructureSchema;
|
|
528
531
|
export declare var HoursOfOperationSearchCriteria$: StaticStructureSchema;
|
|
529
532
|
export declare var HoursOfOperationSearchFilter$: StaticStructureSchema;
|
|
533
|
+
export declare var HoursOfOperationsIdentifier$: StaticStructureSchema;
|
|
530
534
|
export declare var HoursOfOperationSummary$: StaticStructureSchema;
|
|
531
535
|
export declare var HoursOfOperationTimeSlice$: StaticStructureSchema;
|
|
532
536
|
export declare var IdempotencyException$: StaticErrorSchema;
|
|
@@ -573,6 +577,8 @@ export declare var ListAuthenticationProfilesRequest$: StaticStructureSchema;
|
|
|
573
577
|
export declare var ListAuthenticationProfilesResponse$: StaticStructureSchema;
|
|
574
578
|
export declare var ListBotsRequest$: StaticStructureSchema;
|
|
575
579
|
export declare var ListBotsResponse$: StaticStructureSchema;
|
|
580
|
+
export declare var ListChildHoursOfOperationsRequest$: StaticStructureSchema;
|
|
581
|
+
export declare var ListChildHoursOfOperationsResponse$: StaticStructureSchema;
|
|
576
582
|
export declare var ListCondition$: StaticStructureSchema;
|
|
577
583
|
export declare var ListContactEvaluationsRequest$: StaticStructureSchema;
|
|
578
584
|
export declare var ListContactEvaluationsResponse$: StaticStructureSchema;
|
|
@@ -715,11 +721,13 @@ export declare var OutboundRawMessage$: StaticStructureSchema;
|
|
|
715
721
|
export declare var OutboundStrategy$: StaticStructureSchema;
|
|
716
722
|
export declare var OutboundStrategyConfig$: StaticStructureSchema;
|
|
717
723
|
export declare var OutputTypeNotFoundException$: StaticErrorSchema;
|
|
724
|
+
export declare var OverrideHour$: StaticStructureSchema;
|
|
718
725
|
export declare var OverrideTimeSlice$: StaticStructureSchema;
|
|
719
726
|
export declare var PaletteCanvas$: StaticStructureSchema;
|
|
720
727
|
export declare var PaletteHeader$: StaticStructureSchema;
|
|
721
728
|
export declare var PaletteNavigation$: StaticStructureSchema;
|
|
722
729
|
export declare var PalettePrimary$: StaticStructureSchema;
|
|
730
|
+
export declare var ParentHoursOfOperationConfig$: StaticStructureSchema;
|
|
723
731
|
export declare var ParticipantCapabilities$: StaticStructureSchema;
|
|
724
732
|
export declare var ParticipantConfiguration$: StaticStructureSchema;
|
|
725
733
|
export declare var ParticipantDetails$: StaticStructureSchema;
|
|
@@ -786,6 +794,8 @@ export declare var RealTimeContactAnalysisTranscriptItemWithCharacterOffsets$: S
|
|
|
786
794
|
export declare var RealTimeContactAnalysisTranscriptItemWithContent$: StaticStructureSchema;
|
|
787
795
|
export declare var RecordingInfo$: StaticStructureSchema;
|
|
788
796
|
export declare var RecordPrimaryValue$: StaticStructureSchema;
|
|
797
|
+
export declare var RecurrenceConfig$: StaticStructureSchema;
|
|
798
|
+
export declare var RecurrencePattern$: StaticStructureSchema;
|
|
789
799
|
export declare var Reference$: StaticStructureSchema;
|
|
790
800
|
export declare var ReleasePhoneNumberRequest$: StaticStructureSchema;
|
|
791
801
|
export declare var ReplicateInstanceRequest$: StaticStructureSchema;
|
|
@@ -1141,6 +1151,7 @@ export declare var AssociateContactWithUser$: StaticOperationSchema;
|
|
|
1141
1151
|
export declare var AssociateDefaultVocabulary$: StaticOperationSchema;
|
|
1142
1152
|
export declare var AssociateEmailAddressAlias$: StaticOperationSchema;
|
|
1143
1153
|
export declare var AssociateFlow$: StaticOperationSchema;
|
|
1154
|
+
export declare var AssociateHoursOfOperations$: StaticOperationSchema;
|
|
1144
1155
|
export declare var AssociateInstanceStorageConfig$: StaticOperationSchema;
|
|
1145
1156
|
export declare var AssociateLambdaFunction$: StaticOperationSchema;
|
|
1146
1157
|
export declare var AssociateLexBot$: StaticOperationSchema;
|
|
@@ -1269,6 +1280,7 @@ export declare var DisassociateApprovedOrigin$: StaticOperationSchema;
|
|
|
1269
1280
|
export declare var DisassociateBot$: StaticOperationSchema;
|
|
1270
1281
|
export declare var DisassociateEmailAddressAlias$: StaticOperationSchema;
|
|
1271
1282
|
export declare var DisassociateFlow$: StaticOperationSchema;
|
|
1283
|
+
export declare var DisassociateHoursOfOperations$: StaticOperationSchema;
|
|
1272
1284
|
export declare var DisassociateInstanceStorageConfig$: StaticOperationSchema;
|
|
1273
1285
|
export declare var DisassociateLambdaFunction$: StaticOperationSchema;
|
|
1274
1286
|
export declare var DisassociateLexBot$: StaticOperationSchema;
|
|
@@ -1304,6 +1316,7 @@ export declare var ListApprovedOrigins$: StaticOperationSchema;
|
|
|
1304
1316
|
export declare var ListAssociatedContacts$: StaticOperationSchema;
|
|
1305
1317
|
export declare var ListAuthenticationProfiles$: StaticOperationSchema;
|
|
1306
1318
|
export declare var ListBots$: StaticOperationSchema;
|
|
1319
|
+
export declare var ListChildHoursOfOperations$: StaticOperationSchema;
|
|
1307
1320
|
export declare var ListContactEvaluations$: StaticOperationSchema;
|
|
1308
1321
|
export declare var ListContactFlowModuleAliases$: StaticOperationSchema;
|
|
1309
1322
|
export declare var ListContactFlowModules$: StaticOperationSchema;
|
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.970.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connect",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.20.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.10.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "3.970.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.970.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.969.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.969.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.969.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.970.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.969.0",
|
|
31
|
+
"@aws-sdk/types": "3.969.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.970.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.969.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.970.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
+
"@smithy/core": "^3.20.6",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
|
+
"@smithy/hash-node": "^4.2.8",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.7",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.23",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.9",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.8",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.8",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
+
"@smithy/smithy-client": "^4.10.8",
|
|
49
|
+
"@smithy/types": "^4.12.0",
|
|
50
|
+
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.22",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.25",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.8",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.8",
|
|
58
|
+
"@smithy/util-retry": "^4.2.8",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|