@aws-sdk/client-connect 3.986.0 → 3.988.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 +7 -0
- package/dist-cjs/index.js +400 -12758
- package/dist-cjs/models/ConnectServiceException.js +12 -0
- package/dist-cjs/models/errors.js +434 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +10615 -0
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/UpdateUserConfigCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +11 -6
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +296 -218
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/CreateUserCommand.d.ts +64 -1
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +38 -1
- package/dist-types/commands/ListAgentStatusesCommand.d.ts +1 -1
- package/dist-types/commands/ListAnalyticsDataAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListAnalyticsDataLakeDataSetsCommand.d.ts +1 -2
- package/dist-types/commands/SearchUsersCommand.d.ts +38 -1
- package/dist-types/commands/SearchWorkspaceAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/SearchWorkspacesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateUserConfigCommand.d.ts +131 -0
- package/dist-types/commands/UpdateUserPhoneConfigCommand.d.ts +4 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +27 -14
- package/dist-types/models/models_0.d.ts +138 -115
- package/dist-types/models/models_1.d.ts +138 -124
- package/dist-types/models/models_2.d.ts +150 -166
- package/dist-types/models/models_3.d.ts +206 -3
- package/dist-types/schemas/schemas_0.d.ts +43 -28
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAgentStatusesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAnalyticsDataAssociationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAnalyticsDataLakeDataSetsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchWorkspaceAssociationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchWorkspacesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateUserConfigCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +14 -7
- package/dist-types/ts3.4/models/models_0.d.ts +34 -30
- package/dist-types/ts3.4/models/models_1.d.ts +40 -33
- package/dist-types/ts3.4/models/models_2.d.ts +42 -36
- package/dist-types/ts3.4/models/models_3.d.ts +50 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +38 -28
- package/package.json +13 -13
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AgentAvailabilityTimer,
|
|
3
|
-
AgentStatusType,
|
|
4
3
|
AutoEvaluationStatus,
|
|
5
4
|
Channel,
|
|
6
5
|
Comparison,
|
|
@@ -61,6 +60,7 @@ import {
|
|
|
61
60
|
Visibility,
|
|
62
61
|
VocabularyLanguageCode,
|
|
63
62
|
VocabularyState,
|
|
63
|
+
WorkspaceFontFamily,
|
|
64
64
|
} from "./enums";
|
|
65
65
|
import {
|
|
66
66
|
AgentConfig,
|
|
@@ -94,24 +94,55 @@ import {
|
|
|
94
94
|
UserPhoneConfig,
|
|
95
95
|
Validation,
|
|
96
96
|
View,
|
|
97
|
-
|
|
97
|
+
WorkspaceThemeImages,
|
|
98
|
+
WorkspaceThemePalette,
|
|
99
|
+
AfterContactWorkConfigPerChannel,
|
|
98
100
|
AgentContactReference,
|
|
99
|
-
AgentStatusSummary,
|
|
100
101
|
AiAgentInfo,
|
|
101
102
|
AliasConfiguration,
|
|
102
|
-
|
|
103
|
+
AutoAcceptConfig,
|
|
103
104
|
Distribution,
|
|
104
105
|
FailedBatchAssociationSummary,
|
|
105
106
|
HoursOfOperationConfig,
|
|
106
107
|
HoursOfOperationOverrideConfig,
|
|
107
108
|
MediaConcurrency,
|
|
109
|
+
PersistentConnectionConfig,
|
|
110
|
+
PhoneNumberConfig,
|
|
108
111
|
PrimaryValue,
|
|
109
112
|
RoutingProfileQueueReference,
|
|
110
113
|
RuleAction,
|
|
111
114
|
SecurityProfileItem,
|
|
112
115
|
SuccessfulBatchAssociationSummary,
|
|
113
116
|
TaskTemplateField,
|
|
117
|
+
VoiceEnhancementConfig,
|
|
114
118
|
} from "./models_0";
|
|
119
|
+
export interface FontFamily {
|
|
120
|
+
Default?: WorkspaceFontFamily | undefined;
|
|
121
|
+
}
|
|
122
|
+
export interface WorkspaceThemeTypography {
|
|
123
|
+
FontFamily?: FontFamily | undefined;
|
|
124
|
+
}
|
|
125
|
+
export interface WorkspaceThemeConfig {
|
|
126
|
+
Palette?: WorkspaceThemePalette | undefined;
|
|
127
|
+
Images?: WorkspaceThemeImages | undefined;
|
|
128
|
+
Typography?: WorkspaceThemeTypography | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface WorkspaceTheme {
|
|
131
|
+
Light?: WorkspaceThemeConfig | undefined;
|
|
132
|
+
Dark?: WorkspaceThemeConfig | undefined;
|
|
133
|
+
}
|
|
134
|
+
export interface CreateWorkspaceRequest {
|
|
135
|
+
InstanceId: string | undefined;
|
|
136
|
+
Name: string | undefined;
|
|
137
|
+
Description?: string | undefined;
|
|
138
|
+
Theme?: WorkspaceTheme | undefined;
|
|
139
|
+
Title?: string | undefined;
|
|
140
|
+
Tags?: Record<string, string> | undefined;
|
|
141
|
+
}
|
|
142
|
+
export interface CreateWorkspaceResponse {
|
|
143
|
+
WorkspaceId: string | undefined;
|
|
144
|
+
WorkspaceArn: string | undefined;
|
|
145
|
+
}
|
|
115
146
|
export interface CreateWorkspacePageRequest {
|
|
116
147
|
InstanceId: string | undefined;
|
|
117
148
|
WorkspaceId: string | undefined;
|
|
@@ -1113,6 +1144,11 @@ export interface User {
|
|
|
1113
1144
|
RoutingProfileId?: string | undefined;
|
|
1114
1145
|
HierarchyGroupId?: string | undefined;
|
|
1115
1146
|
Tags?: Record<string, string> | undefined;
|
|
1147
|
+
AutoAcceptConfigs?: AutoAcceptConfig[] | undefined;
|
|
1148
|
+
AfterContactWorkConfigs?: AfterContactWorkConfigPerChannel[] | undefined;
|
|
1149
|
+
PhoneNumberConfigs?: PhoneNumberConfig[] | undefined;
|
|
1150
|
+
PersistentConnectionConfigs?: PersistentConnectionConfig[] | undefined;
|
|
1151
|
+
VoiceEnhancementConfigs?: VoiceEnhancementConfig[] | undefined;
|
|
1116
1152
|
LastModifiedTime?: Date | undefined;
|
|
1117
1153
|
LastModifiedRegion?: string | undefined;
|
|
1118
1154
|
}
|
|
@@ -1737,32 +1773,3 @@ export interface ImportWorkspaceMediaRequest {
|
|
|
1737
1773
|
MediaSource: string | undefined;
|
|
1738
1774
|
}
|
|
1739
1775
|
export interface ImportWorkspaceMediaResponse {}
|
|
1740
|
-
export interface ListAgentStatusRequest {
|
|
1741
|
-
InstanceId: string | undefined;
|
|
1742
|
-
NextToken?: string | undefined;
|
|
1743
|
-
MaxResults?: number | undefined;
|
|
1744
|
-
AgentStatusTypes?: AgentStatusType[] | undefined;
|
|
1745
|
-
}
|
|
1746
|
-
export interface ListAgentStatusResponse {
|
|
1747
|
-
NextToken?: string | undefined;
|
|
1748
|
-
AgentStatusSummaryList?: AgentStatusSummary[] | undefined;
|
|
1749
|
-
}
|
|
1750
|
-
export interface ListAnalyticsDataAssociationsRequest {
|
|
1751
|
-
InstanceId: string | undefined;
|
|
1752
|
-
DataSetId?: string | undefined;
|
|
1753
|
-
NextToken?: string | undefined;
|
|
1754
|
-
MaxResults?: number | undefined;
|
|
1755
|
-
}
|
|
1756
|
-
export interface ListAnalyticsDataAssociationsResponse {
|
|
1757
|
-
Results?: AnalyticsDataAssociationResult[] | undefined;
|
|
1758
|
-
NextToken?: string | undefined;
|
|
1759
|
-
}
|
|
1760
|
-
export interface ListAnalyticsDataLakeDataSetsRequest {
|
|
1761
|
-
InstanceId: string | undefined;
|
|
1762
|
-
NextToken?: string | undefined;
|
|
1763
|
-
MaxResults?: number | undefined;
|
|
1764
|
-
}
|
|
1765
|
-
export interface AnalyticsDataSetsResult {
|
|
1766
|
-
DataSetId?: string | undefined;
|
|
1767
|
-
DataSetName?: string | undefined;
|
|
1768
|
-
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AgentStatusType,
|
|
2
3
|
ArtifactStatus,
|
|
3
4
|
AutoEvaluationStatus,
|
|
4
5
|
BooleanComparisonType,
|
|
@@ -62,7 +63,6 @@ import {
|
|
|
62
63
|
UseCaseType,
|
|
63
64
|
ViewStatus,
|
|
64
65
|
ViewType,
|
|
65
|
-
Visibility,
|
|
66
66
|
VocabularyLanguageCode,
|
|
67
67
|
VocabularyState,
|
|
68
68
|
} from "./enums";
|
|
@@ -74,23 +74,29 @@ import {
|
|
|
74
74
|
StringCondition,
|
|
75
75
|
UserPhoneConfig,
|
|
76
76
|
ActionSummary,
|
|
77
|
+
AfterContactWorkConfigPerChannel,
|
|
77
78
|
AgentStatus,
|
|
79
|
+
AgentStatusSummary,
|
|
78
80
|
AliasConfiguration,
|
|
81
|
+
AnalyticsDataAssociationResult,
|
|
79
82
|
Application,
|
|
83
|
+
AutoAcceptConfig,
|
|
80
84
|
FlowAssociationSummary,
|
|
81
85
|
FlowModule,
|
|
82
86
|
InstanceStorageConfig,
|
|
83
87
|
LexBot,
|
|
88
|
+
PersistentConnectionConfig,
|
|
89
|
+
PhoneNumberConfig,
|
|
84
90
|
PrimaryValueResponse,
|
|
85
91
|
SecurityProfileItem,
|
|
86
92
|
TagCondition,
|
|
87
93
|
UserProficiency,
|
|
88
94
|
View,
|
|
95
|
+
VoiceEnhancementConfig,
|
|
89
96
|
} from "./models_0";
|
|
90
97
|
import {
|
|
91
98
|
EvaluationContactParticipant,
|
|
92
99
|
EvaluationScore,
|
|
93
|
-
AnalyticsDataSetsResult,
|
|
94
100
|
Attribute,
|
|
95
101
|
ContactFlow,
|
|
96
102
|
ContactFlowModule,
|
|
@@ -108,6 +114,35 @@ import {
|
|
|
108
114
|
RoutingProfile,
|
|
109
115
|
TestCase,
|
|
110
116
|
} from "./models_1";
|
|
117
|
+
export interface ListAgentStatusRequest {
|
|
118
|
+
InstanceId: string | undefined;
|
|
119
|
+
NextToken?: string | undefined;
|
|
120
|
+
MaxResults?: number | undefined;
|
|
121
|
+
AgentStatusTypes?: AgentStatusType[] | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface ListAgentStatusResponse {
|
|
124
|
+
NextToken?: string | undefined;
|
|
125
|
+
AgentStatusSummaryList?: AgentStatusSummary[] | undefined;
|
|
126
|
+
}
|
|
127
|
+
export interface ListAnalyticsDataAssociationsRequest {
|
|
128
|
+
InstanceId: string | undefined;
|
|
129
|
+
DataSetId?: string | undefined;
|
|
130
|
+
NextToken?: string | undefined;
|
|
131
|
+
MaxResults?: number | undefined;
|
|
132
|
+
}
|
|
133
|
+
export interface ListAnalyticsDataAssociationsResponse {
|
|
134
|
+
Results?: AnalyticsDataAssociationResult[] | undefined;
|
|
135
|
+
NextToken?: string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface ListAnalyticsDataLakeDataSetsRequest {
|
|
138
|
+
InstanceId: string | undefined;
|
|
139
|
+
NextToken?: string | undefined;
|
|
140
|
+
MaxResults?: number | undefined;
|
|
141
|
+
}
|
|
142
|
+
export interface AnalyticsDataSetsResult {
|
|
143
|
+
DataSetId?: string | undefined;
|
|
144
|
+
DataSetName?: string | undefined;
|
|
145
|
+
}
|
|
111
146
|
export interface ListAnalyticsDataLakeDataSetsResponse {
|
|
112
147
|
Results?: AnalyticsDataSetsResult[] | undefined;
|
|
113
148
|
NextToken?: string | undefined;
|
|
@@ -1895,6 +1930,11 @@ export interface UserSearchSummary {
|
|
|
1895
1930
|
SecurityProfileIds?: string[] | undefined;
|
|
1896
1931
|
Tags?: Record<string, string> | undefined;
|
|
1897
1932
|
Username?: string | undefined;
|
|
1933
|
+
AutoAcceptConfigs?: AutoAcceptConfig[] | undefined;
|
|
1934
|
+
AfterContactWorkConfigs?: AfterContactWorkConfigPerChannel[] | undefined;
|
|
1935
|
+
PhoneNumberConfigs?: PhoneNumberConfig[] | undefined;
|
|
1936
|
+
PersistentConnectionConfigs?: PersistentConnectionConfig[] | undefined;
|
|
1937
|
+
VoiceEnhancementConfigs?: VoiceEnhancementConfig[] | undefined;
|
|
1898
1938
|
}
|
|
1899
1939
|
export interface SearchUsersResponse {
|
|
1900
1940
|
Users?: UserSearchSummary[] | undefined;
|
|
@@ -1930,37 +1970,3 @@ export interface SearchVocabulariesResponse {
|
|
|
1930
1970
|
VocabularySummaryList?: VocabularySummary[] | undefined;
|
|
1931
1971
|
NextToken?: string | undefined;
|
|
1932
1972
|
}
|
|
1933
|
-
export interface WorkspaceAssociationSearchFilter {
|
|
1934
|
-
AttributeFilter?: ControlPlaneAttributeFilter | undefined;
|
|
1935
|
-
}
|
|
1936
|
-
export interface WorkspaceAssociationSearchSummary {
|
|
1937
|
-
WorkspaceId?: string | undefined;
|
|
1938
|
-
WorkspaceArn?: string | undefined;
|
|
1939
|
-
ResourceId?: string | undefined;
|
|
1940
|
-
ResourceArn?: string | undefined;
|
|
1941
|
-
ResourceType?: string | undefined;
|
|
1942
|
-
ResourceName?: string | undefined;
|
|
1943
|
-
}
|
|
1944
|
-
export interface SearchWorkspaceAssociationsResponse {
|
|
1945
|
-
NextToken?: string | undefined;
|
|
1946
|
-
WorkspaceAssociations?: WorkspaceAssociationSearchSummary[] | undefined;
|
|
1947
|
-
ApproximateTotalCount?: number | undefined;
|
|
1948
|
-
}
|
|
1949
|
-
export interface WorkspaceSearchFilter {
|
|
1950
|
-
AttributeFilter?: ControlPlaneAttributeFilter | undefined;
|
|
1951
|
-
}
|
|
1952
|
-
export interface WorkspaceSearchSummary {
|
|
1953
|
-
Id?: string | undefined;
|
|
1954
|
-
Name?: string | undefined;
|
|
1955
|
-
Visibility?: Visibility | undefined;
|
|
1956
|
-
Description?: string | undefined;
|
|
1957
|
-
Title?: string | undefined;
|
|
1958
|
-
Arn?: string | undefined;
|
|
1959
|
-
CreatedAt?: Date | undefined;
|
|
1960
|
-
Tags?: Record<string, string> | undefined;
|
|
1961
|
-
}
|
|
1962
|
-
export interface SearchWorkspacesResponse {
|
|
1963
|
-
NextToken?: string | undefined;
|
|
1964
|
-
Workspaces?: WorkspaceSearchSummary[] | undefined;
|
|
1965
|
-
ApproximateTotalCount?: number | undefined;
|
|
1966
|
-
}
|
|
@@ -55,6 +55,7 @@ import {
|
|
|
55
55
|
AgentStatusSearchFilter,
|
|
56
56
|
AllowedCapabilities,
|
|
57
57
|
Campaign,
|
|
58
|
+
ControlPlaneAttributeFilter,
|
|
58
59
|
CreatedByInfo,
|
|
59
60
|
DataTableLockVersion,
|
|
60
61
|
Endpoint,
|
|
@@ -83,19 +84,23 @@ import {
|
|
|
83
84
|
Validation,
|
|
84
85
|
View,
|
|
85
86
|
ViewInputContent,
|
|
86
|
-
|
|
87
|
+
AfterContactWorkConfigPerChannel,
|
|
87
88
|
Application,
|
|
89
|
+
AutoAcceptConfig,
|
|
88
90
|
EvaluationFormItemEnablementExpression,
|
|
89
91
|
FlowModule,
|
|
90
92
|
HoursOfOperationConfig,
|
|
91
93
|
HoursOfOperationOverrideConfig,
|
|
92
94
|
MediaConcurrency,
|
|
95
|
+
PersistentConnectionConfig,
|
|
96
|
+
PhoneNumberConfig,
|
|
93
97
|
PrimaryValue,
|
|
94
98
|
Reference,
|
|
95
99
|
RoutingProfileQueueConfig,
|
|
96
100
|
RuleAction,
|
|
97
101
|
TaskTemplateField,
|
|
98
102
|
UserProficiency,
|
|
103
|
+
VoiceEnhancementConfig,
|
|
99
104
|
} from "./models_0";
|
|
100
105
|
import {
|
|
101
106
|
AttributeCondition,
|
|
@@ -115,6 +120,7 @@ import {
|
|
|
115
120
|
TaskTemplateInfoV2,
|
|
116
121
|
TelephonyConfig,
|
|
117
122
|
WisdomInfo,
|
|
123
|
+
WorkspaceTheme,
|
|
118
124
|
ContactEvaluation,
|
|
119
125
|
EvaluationNote,
|
|
120
126
|
NextContactEntry,
|
|
@@ -146,9 +152,41 @@ import {
|
|
|
146
152
|
UserHierarchyGroupSearchFilter,
|
|
147
153
|
UserSearchFilter,
|
|
148
154
|
ViewSearchFilter,
|
|
149
|
-
WorkspaceAssociationSearchFilter,
|
|
150
|
-
WorkspaceSearchFilter,
|
|
151
155
|
} from "./models_2";
|
|
156
|
+
export interface WorkspaceAssociationSearchFilter {
|
|
157
|
+
AttributeFilter?: ControlPlaneAttributeFilter | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface WorkspaceAssociationSearchSummary {
|
|
160
|
+
WorkspaceId?: string | undefined;
|
|
161
|
+
WorkspaceArn?: string | undefined;
|
|
162
|
+
ResourceId?: string | undefined;
|
|
163
|
+
ResourceArn?: string | undefined;
|
|
164
|
+
ResourceType?: string | undefined;
|
|
165
|
+
ResourceName?: string | undefined;
|
|
166
|
+
}
|
|
167
|
+
export interface SearchWorkspaceAssociationsResponse {
|
|
168
|
+
NextToken?: string | undefined;
|
|
169
|
+
WorkspaceAssociations?: WorkspaceAssociationSearchSummary[] | undefined;
|
|
170
|
+
ApproximateTotalCount?: number | undefined;
|
|
171
|
+
}
|
|
172
|
+
export interface WorkspaceSearchFilter {
|
|
173
|
+
AttributeFilter?: ControlPlaneAttributeFilter | undefined;
|
|
174
|
+
}
|
|
175
|
+
export interface WorkspaceSearchSummary {
|
|
176
|
+
Id?: string | undefined;
|
|
177
|
+
Name?: string | undefined;
|
|
178
|
+
Visibility?: Visibility | undefined;
|
|
179
|
+
Description?: string | undefined;
|
|
180
|
+
Title?: string | undefined;
|
|
181
|
+
Arn?: string | undefined;
|
|
182
|
+
CreatedAt?: Date | undefined;
|
|
183
|
+
Tags?: Record<string, string> | undefined;
|
|
184
|
+
}
|
|
185
|
+
export interface SearchWorkspacesResponse {
|
|
186
|
+
NextToken?: string | undefined;
|
|
187
|
+
Workspaces?: WorkspaceSearchSummary[] | undefined;
|
|
188
|
+
ApproximateTotalCount?: number | undefined;
|
|
189
|
+
}
|
|
152
190
|
export interface ChatEvent {
|
|
153
191
|
Type: ChatEventType | undefined;
|
|
154
192
|
ContentType?: string | undefined;
|
|
@@ -949,6 +987,15 @@ export interface UpdateTrafficDistributionRequest {
|
|
|
949
987
|
AgentConfig?: AgentConfig | undefined;
|
|
950
988
|
}
|
|
951
989
|
export interface UpdateTrafficDistributionResponse {}
|
|
990
|
+
export interface UpdateUserConfigRequest {
|
|
991
|
+
AutoAcceptConfigs?: AutoAcceptConfig[] | undefined;
|
|
992
|
+
AfterContactWorkConfigs?: AfterContactWorkConfigPerChannel[] | undefined;
|
|
993
|
+
PhoneNumberConfigs?: PhoneNumberConfig[] | undefined;
|
|
994
|
+
PersistentConnectionConfigs?: PersistentConnectionConfig[] | undefined;
|
|
995
|
+
VoiceEnhancementConfigs?: VoiceEnhancementConfig[] | undefined;
|
|
996
|
+
UserId: string | undefined;
|
|
997
|
+
InstanceId: string | undefined;
|
|
998
|
+
}
|
|
952
999
|
export interface UpdateUserHierarchyRequest {
|
|
953
1000
|
HierarchyGroupId?: string | undefined;
|
|
954
1001
|
UserId: string | undefined;
|
|
@@ -1,14 +1,46 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
StaticUnionSchema,
|
|
6
7
|
} from "@smithy/types";
|
|
8
|
+
export declare var ConnectServiceException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConditionalOperationFailedException$: StaticErrorSchema;
|
|
11
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
12
|
+
export declare var ContactFlowNotPublishedException$: StaticErrorSchema;
|
|
13
|
+
export declare var ContactNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var DestinationNotAllowedException$: StaticErrorSchema;
|
|
15
|
+
export declare var DuplicateResourceException$: StaticErrorSchema;
|
|
16
|
+
export declare var IdempotencyException$: StaticErrorSchema;
|
|
17
|
+
export declare var InternalServiceException$: StaticErrorSchema;
|
|
18
|
+
export declare var InvalidActiveRegionException$: StaticErrorSchema;
|
|
19
|
+
export declare var InvalidContactFlowException$: StaticErrorSchema;
|
|
20
|
+
export declare var InvalidContactFlowModuleException$: StaticErrorSchema;
|
|
21
|
+
export declare var InvalidParameterException$: StaticErrorSchema;
|
|
22
|
+
export declare var InvalidRequestException$: StaticErrorSchema;
|
|
23
|
+
export declare var InvalidTestCaseException$: StaticErrorSchema;
|
|
24
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
25
|
+
export declare var MaximumResultReturnedException$: StaticErrorSchema;
|
|
26
|
+
export declare var OutboundContactNotPermittedException$: StaticErrorSchema;
|
|
27
|
+
export declare var OutputTypeNotFoundException$: StaticErrorSchema;
|
|
28
|
+
export declare var PropertyValidationException$: StaticErrorSchema;
|
|
29
|
+
export declare var ResourceConflictException$: StaticErrorSchema;
|
|
30
|
+
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
31
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
32
|
+
export declare var ResourceNotReadyException$: StaticErrorSchema;
|
|
33
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
34
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
35
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
36
|
+
export declare var UserNotFoundException$: StaticErrorSchema;
|
|
37
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
8
38
|
export declare var ActionSummary$: StaticStructureSchema;
|
|
9
39
|
export declare var ActivateEvaluationFormRequest$: StaticStructureSchema;
|
|
10
40
|
export declare var ActivateEvaluationFormResponse$: StaticStructureSchema;
|
|
11
41
|
export declare var AdditionalEmailRecipients$: StaticStructureSchema;
|
|
42
|
+
export declare var AfterContactWorkConfig$: StaticStructureSchema;
|
|
43
|
+
export declare var AfterContactWorkConfigPerChannel$: StaticStructureSchema;
|
|
12
44
|
export declare var AgentConfig$: StaticStructureSchema;
|
|
13
45
|
export declare var AgentContactReference$: StaticStructureSchema;
|
|
14
46
|
export declare var AgentFirst$: StaticStructureSchema;
|
|
@@ -72,6 +104,7 @@ export declare var AudioFeatures$: StaticStructureSchema;
|
|
|
72
104
|
export declare var AudioQualityMetricsInfo$: StaticStructureSchema;
|
|
73
105
|
export declare var AuthenticationProfile$: StaticStructureSchema;
|
|
74
106
|
export declare var AuthenticationProfileSummary$: StaticStructureSchema;
|
|
107
|
+
export declare var AutoAcceptConfig$: StaticStructureSchema;
|
|
75
108
|
export declare var AutoEvaluationConfiguration$: StaticStructureSchema;
|
|
76
109
|
export declare var AutoEvaluationDetails$: StaticStructureSchema;
|
|
77
110
|
export declare var AutomaticFailConfiguration$: StaticStructureSchema;
|
|
@@ -118,8 +151,6 @@ export declare var CommonAttributeAndCondition$: StaticStructureSchema;
|
|
|
118
151
|
export declare var CompleteAttachedFileUploadRequest$: StaticStructureSchema;
|
|
119
152
|
export declare var CompleteAttachedFileUploadResponse$: StaticStructureSchema;
|
|
120
153
|
export declare var Condition$: StaticStructureSchema;
|
|
121
|
-
export declare var ConditionalOperationFailedException$: StaticErrorSchema;
|
|
122
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
123
154
|
export declare var ConnectionData$: StaticStructureSchema;
|
|
124
155
|
export declare var Contact$: StaticStructureSchema;
|
|
125
156
|
export declare var ContactAnalysis$: StaticStructureSchema;
|
|
@@ -138,7 +169,6 @@ export declare var ContactFlowModuleSearchCriteria$: StaticStructureSchema;
|
|
|
138
169
|
export declare var ContactFlowModuleSearchFilter$: StaticStructureSchema;
|
|
139
170
|
export declare var ContactFlowModuleSummary$: StaticStructureSchema;
|
|
140
171
|
export declare var ContactFlowModuleVersionSummary$: StaticStructureSchema;
|
|
141
|
-
export declare var ContactFlowNotPublishedException$: StaticErrorSchema;
|
|
142
172
|
export declare var ContactFlowSearchCriteria$: StaticStructureSchema;
|
|
143
173
|
export declare var ContactFlowSearchFilter$: StaticStructureSchema;
|
|
144
174
|
export declare var ContactFlowSummary$: StaticStructureSchema;
|
|
@@ -146,7 +176,6 @@ export declare var ContactFlowTypeCondition$: StaticStructureSchema;
|
|
|
146
176
|
export declare var ContactFlowVersionSummary$: StaticStructureSchema;
|
|
147
177
|
export declare var ContactMetricInfo$: StaticStructureSchema;
|
|
148
178
|
export declare var ContactMetricResult$: StaticStructureSchema;
|
|
149
|
-
export declare var ContactNotFoundException$: StaticErrorSchema;
|
|
150
179
|
export declare var ContactSearchSummary$: StaticStructureSchema;
|
|
151
180
|
export declare var ContactSearchSummaryAgentInfo$: StaticStructureSchema;
|
|
152
181
|
export declare var ContactSearchSummaryQueueInfo$: StaticStructureSchema;
|
|
@@ -373,7 +402,6 @@ export declare var DescribeVocabularyRequest$: StaticStructureSchema;
|
|
|
373
402
|
export declare var DescribeVocabularyResponse$: StaticStructureSchema;
|
|
374
403
|
export declare var DescribeWorkspaceRequest$: StaticStructureSchema;
|
|
375
404
|
export declare var DescribeWorkspaceResponse$: StaticStructureSchema;
|
|
376
|
-
export declare var DestinationNotAllowedException$: StaticErrorSchema;
|
|
377
405
|
export declare var DeviceInfo$: StaticStructureSchema;
|
|
378
406
|
export declare var Dimensions$: StaticStructureSchema;
|
|
379
407
|
export declare var DisassociateAnalyticsDataSetRequest$: StaticStructureSchema;
|
|
@@ -403,7 +431,6 @@ export declare var DismissUserContactRequest$: StaticStructureSchema;
|
|
|
403
431
|
export declare var DismissUserContactResponse$: StaticStructureSchema;
|
|
404
432
|
export declare var Distribution$: StaticStructureSchema;
|
|
405
433
|
export declare var DownloadUrlMetadata$: StaticStructureSchema;
|
|
406
|
-
export declare var DuplicateResourceException$: StaticErrorSchema;
|
|
407
434
|
export declare var EffectiveHoursOfOperations$: StaticStructureSchema;
|
|
408
435
|
export declare var EffectiveOverrideHours$: StaticStructureSchema;
|
|
409
436
|
export declare var EmailAddressInfo$: StaticStructureSchema;
|
|
@@ -547,7 +574,6 @@ export declare var HoursOfOperationSearchFilter$: StaticStructureSchema;
|
|
|
547
574
|
export declare var HoursOfOperationsIdentifier$: StaticStructureSchema;
|
|
548
575
|
export declare var HoursOfOperationSummary$: StaticStructureSchema;
|
|
549
576
|
export declare var HoursOfOperationTimeSlice$: StaticStructureSchema;
|
|
550
|
-
export declare var IdempotencyException$: StaticErrorSchema;
|
|
551
577
|
export declare var ImagesLogo$: StaticStructureSchema;
|
|
552
578
|
export declare var ImportPhoneNumberRequest$: StaticStructureSchema;
|
|
553
579
|
export declare var ImportPhoneNumberResponse$: StaticStructureSchema;
|
|
@@ -562,14 +588,7 @@ export declare var InstanceStatusReason$: StaticStructureSchema;
|
|
|
562
588
|
export declare var InstanceStorageConfig$: StaticStructureSchema;
|
|
563
589
|
export declare var InstanceSummary$: StaticStructureSchema;
|
|
564
590
|
export declare var IntegrationAssociationSummary$: StaticStructureSchema;
|
|
565
|
-
export declare var InternalServiceException$: StaticErrorSchema;
|
|
566
591
|
export declare var IntervalDetails$: StaticStructureSchema;
|
|
567
|
-
export declare var InvalidActiveRegionException$: StaticErrorSchema;
|
|
568
|
-
export declare var InvalidContactFlowException$: StaticErrorSchema;
|
|
569
|
-
export declare var InvalidContactFlowModuleException$: StaticErrorSchema;
|
|
570
|
-
export declare var InvalidParameterException$: StaticErrorSchema;
|
|
571
|
-
export declare var InvalidRequestException$: StaticErrorSchema;
|
|
572
|
-
export declare var InvalidTestCaseException$: StaticErrorSchema;
|
|
573
592
|
export declare var InvisibleFieldInfo$: StaticStructureSchema;
|
|
574
593
|
export declare var KinesisFirehoseConfig$: StaticStructureSchema;
|
|
575
594
|
export declare var KinesisStreamConfig$: StaticStructureSchema;
|
|
@@ -577,7 +596,6 @@ export declare var KinesisVideoStreamConfig$: StaticStructureSchema;
|
|
|
577
596
|
export declare var LexBot$: StaticStructureSchema;
|
|
578
597
|
export declare var LexBotConfig$: StaticStructureSchema;
|
|
579
598
|
export declare var LexV2Bot$: StaticStructureSchema;
|
|
580
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
581
599
|
export declare var ListAgentStatusRequest$: StaticStructureSchema;
|
|
582
600
|
export declare var ListAgentStatusResponse$: StaticStructureSchema;
|
|
583
601
|
export declare var ListAnalyticsDataAssociationsRequest$: StaticStructureSchema;
|
|
@@ -711,7 +729,6 @@ export declare var ListWorkspacePagesResponse$: StaticStructureSchema;
|
|
|
711
729
|
export declare var ListWorkspacesRequest$: StaticStructureSchema;
|
|
712
730
|
export declare var ListWorkspacesResponse$: StaticStructureSchema;
|
|
713
731
|
export declare var MatchCriteria$: StaticStructureSchema;
|
|
714
|
-
export declare var MaximumResultReturnedException$: StaticErrorSchema;
|
|
715
732
|
export declare var MediaConcurrency$: StaticStructureSchema;
|
|
716
733
|
export declare var MediaItem$: StaticStructureSchema;
|
|
717
734
|
export declare var MediaPlacement$: StaticStructureSchema;
|
|
@@ -736,13 +753,11 @@ export declare var ObservationSummary$: StaticStructureSchema;
|
|
|
736
753
|
export declare var OperationalHour$: StaticStructureSchema;
|
|
737
754
|
export declare var OutboundAdditionalRecipients$: StaticStructureSchema;
|
|
738
755
|
export declare var OutboundCallerConfig$: StaticStructureSchema;
|
|
739
|
-
export declare var OutboundContactNotPermittedException$: StaticErrorSchema;
|
|
740
756
|
export declare var OutboundEmailConfig$: StaticStructureSchema;
|
|
741
757
|
export declare var OutboundEmailContent$: StaticStructureSchema;
|
|
742
758
|
export declare var OutboundRawMessage$: StaticStructureSchema;
|
|
743
759
|
export declare var OutboundStrategy$: StaticStructureSchema;
|
|
744
760
|
export declare var OutboundStrategyConfig$: StaticStructureSchema;
|
|
745
|
-
export declare var OutputTypeNotFoundException$: StaticErrorSchema;
|
|
746
761
|
export declare var OverrideHour$: StaticStructureSchema;
|
|
747
762
|
export declare var OverrideTimeSlice$: StaticStructureSchema;
|
|
748
763
|
export declare var PaletteCanvas$: StaticStructureSchema;
|
|
@@ -760,6 +775,8 @@ export declare var ParticipantTokenCredentials$: StaticStructureSchema;
|
|
|
760
775
|
export declare var PauseContactRequest$: StaticStructureSchema;
|
|
761
776
|
export declare var PauseContactResponse$: StaticStructureSchema;
|
|
762
777
|
export declare var PersistentChat$: StaticStructureSchema;
|
|
778
|
+
export declare var PersistentConnectionConfig$: StaticStructureSchema;
|
|
779
|
+
export declare var PhoneNumberConfig$: StaticStructureSchema;
|
|
763
780
|
export declare var PhoneNumberQuickConnectConfig$: StaticStructureSchema;
|
|
764
781
|
export declare var PhoneNumberStatus$: StaticStructureSchema;
|
|
765
782
|
export declare var PhoneNumberSummary$: StaticStructureSchema;
|
|
@@ -779,7 +796,6 @@ export declare var Prompt$: StaticStructureSchema;
|
|
|
779
796
|
export declare var PromptSearchCriteria$: StaticStructureSchema;
|
|
780
797
|
export declare var PromptSearchFilter$: StaticStructureSchema;
|
|
781
798
|
export declare var PromptSummary$: StaticStructureSchema;
|
|
782
|
-
export declare var PropertyValidationException$: StaticErrorSchema;
|
|
783
799
|
export declare var PropertyValidationExceptionProperty$: StaticStructureSchema;
|
|
784
800
|
export declare var PutUserStatusRequest$: StaticStructureSchema;
|
|
785
801
|
export declare var PutUserStatusResponse$: StaticStructureSchema;
|
|
@@ -825,10 +841,6 @@ export declare var ReplicateInstanceResponse$: StaticStructureSchema;
|
|
|
825
841
|
export declare var ReplicationConfiguration$: StaticStructureSchema;
|
|
826
842
|
export declare var ReplicationStatusSummary$: StaticStructureSchema;
|
|
827
843
|
export declare var RequiredFieldInfo$: StaticStructureSchema;
|
|
828
|
-
export declare var ResourceConflictException$: StaticErrorSchema;
|
|
829
|
-
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
830
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
831
|
-
export declare var ResourceNotReadyException$: StaticErrorSchema;
|
|
832
844
|
export declare var ResourceTagsSearchCriteria$: StaticStructureSchema;
|
|
833
845
|
export declare var ResumeContactRecordingRequest$: StaticStructureSchema;
|
|
834
846
|
export declare var ResumeContactRecordingResponse$: StaticStructureSchema;
|
|
@@ -928,7 +940,6 @@ export declare var SendChatIntegrationEventResponse$: StaticStructureSchema;
|
|
|
928
940
|
export declare var SendNotificationActionDefinition$: StaticStructureSchema;
|
|
929
941
|
export declare var SendOutboundEmailRequest$: StaticStructureSchema;
|
|
930
942
|
export declare var SendOutboundEmailResponse$: StaticStructureSchema;
|
|
931
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
932
943
|
export declare var SignInConfig$: StaticStructureSchema;
|
|
933
944
|
export declare var SignInDistribution$: StaticStructureSchema;
|
|
934
945
|
export declare var SingleSelectQuestionRuleCategoryAutomation$: StaticStructureSchema;
|
|
@@ -1009,8 +1020,6 @@ export declare var TestCaseSearchFilter$: StaticStructureSchema;
|
|
|
1009
1020
|
export declare var TestCaseSummary$: StaticStructureSchema;
|
|
1010
1021
|
export declare var Threshold$: StaticStructureSchema;
|
|
1011
1022
|
export declare var ThresholdV2$: StaticStructureSchema;
|
|
1012
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
1013
|
-
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
1014
1023
|
export declare var TrafficDistributionGroup$: StaticStructureSchema;
|
|
1015
1024
|
export declare var TrafficDistributionGroupSummary$: StaticStructureSchema;
|
|
1016
1025
|
export declare var TrafficDistributionGroupUserSummary$: StaticStructureSchema;
|
|
@@ -1091,6 +1100,7 @@ export declare var UpdateTestCaseRequest$: StaticStructureSchema;
|
|
|
1091
1100
|
export declare var UpdateTestCaseResponse$: StaticStructureSchema;
|
|
1092
1101
|
export declare var UpdateTrafficDistributionRequest$: StaticStructureSchema;
|
|
1093
1102
|
export declare var UpdateTrafficDistributionResponse$: StaticStructureSchema;
|
|
1103
|
+
export declare var UpdateUserConfigRequest$: StaticStructureSchema;
|
|
1094
1104
|
export declare var UpdateUserHierarchyGroupNameRequest$: StaticStructureSchema;
|
|
1095
1105
|
export declare var UpdateUserHierarchyRequest$: StaticStructureSchema;
|
|
1096
1106
|
export declare var UpdateUserHierarchyStructureRequest$: StaticStructureSchema;
|
|
@@ -1122,7 +1132,6 @@ export declare var UserHierarchyGroupSearchFilter$: StaticStructureSchema;
|
|
|
1122
1132
|
export declare var UserIdentityInfo$: StaticStructureSchema;
|
|
1123
1133
|
export declare var UserIdentityInfoLite$: StaticStructureSchema;
|
|
1124
1134
|
export declare var UserInfo$: StaticStructureSchema;
|
|
1125
|
-
export declare var UserNotFoundException$: StaticErrorSchema;
|
|
1126
1135
|
export declare var UserPhoneConfig$: StaticStructureSchema;
|
|
1127
1136
|
export declare var UserProficiency$: StaticStructureSchema;
|
|
1128
1137
|
export declare var UserProficiencyDisassociate$: StaticStructureSchema;
|
|
@@ -1144,6 +1153,7 @@ export declare var ViewVersionSummary$: StaticStructureSchema;
|
|
|
1144
1153
|
export declare var Vocabulary$: StaticStructureSchema;
|
|
1145
1154
|
export declare var VocabularySummary$: StaticStructureSchema;
|
|
1146
1155
|
export declare var VoiceCallEntryPointParameters$: StaticStructureSchema;
|
|
1156
|
+
export declare var VoiceEnhancementConfig$: StaticStructureSchema;
|
|
1147
1157
|
export declare var VoiceRecordingConfiguration$: StaticStructureSchema;
|
|
1148
1158
|
export declare var WisdomInfo$: StaticStructureSchema;
|
|
1149
1159
|
export declare var Workspace$: StaticStructureSchema;
|
|
@@ -1160,7 +1170,6 @@ export declare var WorkspaceThemeConfig$: StaticStructureSchema;
|
|
|
1160
1170
|
export declare var WorkspaceThemeImages$: StaticStructureSchema;
|
|
1161
1171
|
export declare var WorkspaceThemePalette$: StaticStructureSchema;
|
|
1162
1172
|
export declare var WorkspaceThemeTypography$: StaticStructureSchema;
|
|
1163
|
-
export declare var ConnectServiceException$: StaticErrorSchema;
|
|
1164
1173
|
export declare var ContactMetricValue$: StaticUnionSchema;
|
|
1165
1174
|
export declare var CreatedByInfo$: StaticUnionSchema;
|
|
1166
1175
|
export declare var EvaluationAnswerData$: StaticUnionSchema;
|
|
@@ -1522,6 +1531,7 @@ export declare var UpdateSecurityProfile$: StaticOperationSchema;
|
|
|
1522
1531
|
export declare var UpdateTaskTemplate$: StaticOperationSchema;
|
|
1523
1532
|
export declare var UpdateTestCase$: StaticOperationSchema;
|
|
1524
1533
|
export declare var UpdateTrafficDistribution$: StaticOperationSchema;
|
|
1534
|
+
export declare var UpdateUserConfig$: StaticOperationSchema;
|
|
1525
1535
|
export declare var UpdateUserHierarchy$: StaticOperationSchema;
|
|
1526
1536
|
export declare var UpdateUserHierarchyGroupName$: StaticOperationSchema;
|
|
1527
1537
|
export declare var UpdateUserHierarchyStructure$: 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.988.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,38 +21,38 @@
|
|
|
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.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
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.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|