@aws-sdk/client-connect 3.607.0 → 3.609.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.
Files changed (43) hide show
  1. package/README.md +38 -0
  2. package/dist-cjs/index.js +178 -0
  3. package/dist-es/Connect.js +6 -0
  4. package/dist-es/commands/DescribeAuthenticationProfileCommand.js +24 -0
  5. package/dist-es/commands/ListAuthenticationProfilesCommand.js +24 -0
  6. package/dist-es/commands/UpdateAuthenticationProfileCommand.js +24 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/pagination/ListAuthenticationProfilesPaginator.js +4 -0
  9. package/dist-es/pagination/index.js +1 -0
  10. package/dist-es/protocols/Aws_restJson1.js +115 -0
  11. package/dist-types/Connect.d.ts +36 -1
  12. package/dist-types/ConnectClient.d.ts +20 -3
  13. package/dist-types/commands/DescribeAuthenticationProfileCommand.d.ts +95 -0
  14. package/dist-types/commands/ListAuthenticationProfilesCommand.d.ts +89 -0
  15. package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListUserProficienciesCommand.d.ts +1 -1
  17. package/dist-types/commands/ListUsersCommand.d.ts +1 -2
  18. package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +1 -2
  19. package/dist-types/commands/UpdateAuthenticationProfileCommand.d.ts +85 -0
  20. package/dist-types/commands/index.d.ts +3 -0
  21. package/dist-types/index.d.ts +15 -1
  22. package/dist-types/models/models_0.d.ts +114 -69
  23. package/dist-types/models/models_1.d.ts +143 -141
  24. package/dist-types/models/models_2.d.ts +194 -6
  25. package/dist-types/pagination/ListAuthenticationProfilesPaginator.d.ts +7 -0
  26. package/dist-types/pagination/index.d.ts +1 -0
  27. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  28. package/dist-types/ts3.4/Connect.d.ts +51 -0
  29. package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
  30. package/dist-types/ts3.4/commands/DescribeAuthenticationProfileCommand.d.ts +40 -0
  31. package/dist-types/ts3.4/commands/ListAuthenticationProfilesCommand.d.ts +40 -0
  32. package/dist-types/ts3.4/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/ListUserProficienciesCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +1 -2
  35. package/dist-types/ts3.4/commands/UpdateAuthenticationProfileCommand.d.ts +36 -0
  36. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +21 -14
  38. package/dist-types/ts3.4/models/models_1.d.ts +31 -37
  39. package/dist-types/ts3.4/models/models_2.d.ts +44 -2
  40. package/dist-types/ts3.4/pagination/ListAuthenticationProfilesPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  43. package/package.json +35 -35
@@ -69,6 +69,7 @@ export * from "./DeleteViewCommand";
69
69
  export * from "./DeleteViewVersionCommand";
70
70
  export * from "./DeleteVocabularyCommand";
71
71
  export * from "./DescribeAgentStatusCommand";
72
+ export * from "./DescribeAuthenticationProfileCommand";
72
73
  export * from "./DescribeContactCommand";
73
74
  export * from "./DescribeContactEvaluationCommand";
74
75
  export * from "./DescribeContactFlowCommand";
@@ -121,6 +122,7 @@ export * from "./ImportPhoneNumberCommand";
121
122
  export * from "./ListAgentStatusesCommand";
122
123
  export * from "./ListAnalyticsDataAssociationsCommand";
123
124
  export * from "./ListApprovedOriginsCommand";
125
+ export * from "./ListAuthenticationProfilesCommand";
124
126
  export * from "./ListBotsCommand";
125
127
  export * from "./ListContactEvaluationsCommand";
126
128
  export * from "./ListContactFlowModulesCommand";
@@ -203,6 +205,7 @@ export * from "./TransferContactCommand";
203
205
  export * from "./UntagContactCommand";
204
206
  export * from "./UntagResourceCommand";
205
207
  export * from "./UpdateAgentStatusCommand";
208
+ export * from "./UpdateAuthenticationProfileCommand";
206
209
  export * from "./UpdateContactAttributesCommand";
207
210
  export * from "./UpdateContactCommand";
208
211
  export * from "./UpdateContactEvaluationCommand";
@@ -1688,6 +1688,27 @@ export interface DescribeAgentStatusRequest {
1688
1688
  export interface DescribeAgentStatusResponse {
1689
1689
  AgentStatus?: AgentStatus;
1690
1690
  }
1691
+ export interface DescribeAuthenticationProfileRequest {
1692
+ AuthenticationProfileId: string | undefined;
1693
+ InstanceId: string | undefined;
1694
+ }
1695
+ export interface AuthenticationProfile {
1696
+ Id?: string;
1697
+ Arn?: string;
1698
+ Name?: string;
1699
+ Description?: string;
1700
+ AllowedIps?: string[];
1701
+ BlockedIps?: string[];
1702
+ IsDefault?: boolean;
1703
+ CreatedTime?: Date;
1704
+ LastModifiedTime?: Date;
1705
+ LastModifiedRegion?: string;
1706
+ PeriodicSessionDuration?: number;
1707
+ MaxSessionDuration?: number;
1708
+ }
1709
+ export interface DescribeAuthenticationProfileResponse {
1710
+ AuthenticationProfile?: AuthenticationProfile;
1711
+ }
1691
1712
  export interface DescribeContactRequest {
1692
1713
  InstanceId: string | undefined;
1693
1714
  ContactId: string | undefined;
@@ -1806,20 +1827,6 @@ export interface EvaluationAnswerOutput {
1806
1827
  Value?: EvaluationAnswerData;
1807
1828
  SystemSuggestedValue?: EvaluationAnswerData;
1808
1829
  }
1809
- export interface EvaluationScore {
1810
- Percentage?: number;
1811
- NotApplicable?: boolean;
1812
- AutomaticFail?: boolean;
1813
- }
1814
- export interface EvaluationMetadata {
1815
- ContactId: string | undefined;
1816
- EvaluatorArn: string | undefined;
1817
- ContactAgentId?: string;
1818
- Score?: EvaluationScore;
1819
- }
1820
- export interface EvaluationNote {
1821
- Value?: string;
1822
- }
1823
1830
  export declare const CreateInstanceRequestFilterSensitiveLog: (
1824
1831
  obj: CreateInstanceRequest
1825
1832
  ) => any;
@@ -18,9 +18,6 @@ import {
18
18
  DirectoryType,
19
19
  Distribution,
20
20
  EvaluationAnswerOutput,
21
- EvaluationMetadata,
22
- EvaluationNote,
23
- EvaluationScore,
24
21
  EventSourceName,
25
22
  FileStatusType,
26
23
  FileUseCaseType,
@@ -53,11 +50,24 @@ import {
53
50
  UseCaseType,
54
51
  UserIdentityInfo,
55
52
  UserPhoneConfig,
56
- UserProficiency,
57
53
  View,
58
54
  VocabularyLanguageCode,
59
55
  VocabularyState,
60
56
  } from "./models_0";
57
+ export interface EvaluationScore {
58
+ Percentage?: number;
59
+ NotApplicable?: boolean;
60
+ AutomaticFail?: boolean;
61
+ }
62
+ export interface EvaluationMetadata {
63
+ ContactId: string | undefined;
64
+ EvaluatorArn: string | undefined;
65
+ ContactAgentId?: string;
66
+ Score?: EvaluationScore;
67
+ }
68
+ export interface EvaluationNote {
69
+ Value?: string;
70
+ }
61
71
  export declare const EvaluationStatus: {
62
72
  readonly DRAFT: "DRAFT";
63
73
  readonly SUBMITTED: "SUBMITTED";
@@ -1260,6 +1270,23 @@ export interface ListApprovedOriginsResponse {
1260
1270
  Origins?: string[];
1261
1271
  NextToken?: string;
1262
1272
  }
1273
+ export interface ListAuthenticationProfilesRequest {
1274
+ InstanceId: string | undefined;
1275
+ MaxResults?: number;
1276
+ NextToken?: string;
1277
+ }
1278
+ export interface AuthenticationProfileSummary {
1279
+ Id?: string;
1280
+ Arn?: string;
1281
+ Name?: string;
1282
+ IsDefault?: boolean;
1283
+ LastModifiedTime?: Date;
1284
+ LastModifiedRegion?: string;
1285
+ }
1286
+ export interface ListAuthenticationProfilesResponse {
1287
+ AuthenticationProfileSummaryList?: AuthenticationProfileSummary[];
1288
+ NextToken?: string;
1289
+ }
1263
1290
  export declare const LexVersion: {
1264
1291
  readonly V1: "V1";
1265
1292
  readonly V2: "V2";
@@ -2148,39 +2175,6 @@ export interface ListUseCasesResponse {
2148
2175
  UseCaseSummaryList?: UseCase[];
2149
2176
  NextToken?: string;
2150
2177
  }
2151
- export interface ListUserHierarchyGroupsRequest {
2152
- InstanceId: string | undefined;
2153
- NextToken?: string;
2154
- MaxResults?: number;
2155
- }
2156
- export interface ListUserHierarchyGroupsResponse {
2157
- UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
2158
- NextToken?: string;
2159
- }
2160
- export interface ListUserProficienciesRequest {
2161
- InstanceId: string | undefined;
2162
- UserId: string | undefined;
2163
- NextToken?: string;
2164
- MaxResults?: number;
2165
- }
2166
- export interface ListUserProficienciesResponse {
2167
- NextToken?: string;
2168
- UserProficiencyList?: UserProficiency[];
2169
- LastModifiedTime?: Date;
2170
- LastModifiedRegion?: string;
2171
- }
2172
- export interface ListUsersRequest {
2173
- InstanceId: string | undefined;
2174
- NextToken?: string;
2175
- MaxResults?: number;
2176
- }
2177
- export interface UserSummary {
2178
- Id?: string;
2179
- Arn?: string;
2180
- Username?: string;
2181
- LastModifiedTime?: Date;
2182
- LastModifiedRegion?: string;
2183
- }
2184
2178
  export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
2185
2179
  export declare const DescribeInstanceResponseFilterSensitiveLog: (
2186
2180
  obj: DescribeInstanceResponse
@@ -22,7 +22,6 @@ import {
22
22
  EvaluationAnswerData,
23
23
  EvaluationFormQuestion,
24
24
  EvaluationFormScoringStrategy,
25
- EvaluationNote,
26
25
  Expiry,
27
26
  FileStatusType,
28
27
  FileUseCaseType,
@@ -66,6 +65,8 @@ import {
66
65
  ContactFlowState,
67
66
  Evaluation,
68
67
  EvaluationFormVersionStatus,
68
+ EvaluationNote,
69
+ HierarchyGroupSummary,
69
70
  HoursOfOperation,
70
71
  InstanceAttributeType,
71
72
  PhoneNumberCountryCode,
@@ -79,8 +80,40 @@ import {
79
80
  SignInConfig,
80
81
  SortOrder,
81
82
  TelephonyConfig,
82
- UserSummary,
83
83
  } from "./models_1";
84
+ export interface ListUserHierarchyGroupsRequest {
85
+ InstanceId: string | undefined;
86
+ NextToken?: string;
87
+ MaxResults?: number;
88
+ }
89
+ export interface ListUserHierarchyGroupsResponse {
90
+ UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
91
+ NextToken?: string;
92
+ }
93
+ export interface ListUserProficienciesRequest {
94
+ InstanceId: string | undefined;
95
+ UserId: string | undefined;
96
+ NextToken?: string;
97
+ MaxResults?: number;
98
+ }
99
+ export interface ListUserProficienciesResponse {
100
+ NextToken?: string;
101
+ UserProficiencyList?: UserProficiency[];
102
+ LastModifiedTime?: Date;
103
+ LastModifiedRegion?: string;
104
+ }
105
+ export interface ListUsersRequest {
106
+ InstanceId: string | undefined;
107
+ NextToken?: string;
108
+ MaxResults?: number;
109
+ }
110
+ export interface UserSummary {
111
+ Id?: string;
112
+ Arn?: string;
113
+ Username?: string;
114
+ LastModifiedTime?: Date;
115
+ LastModifiedRegion?: string;
116
+ }
84
117
  export interface ListUsersResponse {
85
118
  UserSummaryList?: UserSummary[];
86
119
  NextToken?: string;
@@ -816,6 +849,15 @@ export interface UpdateAgentStatusRequest {
816
849
  DisplayOrder?: number;
817
850
  ResetOrderNumber?: boolean;
818
851
  }
852
+ export interface UpdateAuthenticationProfileRequest {
853
+ AuthenticationProfileId: string | undefined;
854
+ InstanceId: string | undefined;
855
+ Name?: string;
856
+ Description?: string;
857
+ AllowedIps?: string[];
858
+ BlockedIps?: string[];
859
+ PeriodicSessionDuration?: number;
860
+ }
819
861
  export interface UpdateContactRequest {
820
862
  InstanceId: string | undefined;
821
863
  ContactId: string | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListAuthenticationProfilesCommandInput,
4
+ ListAuthenticationProfilesCommandOutput,
5
+ } from "../commands/ListAuthenticationProfilesCommand";
6
+ import { ConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListAuthenticationProfiles: (
8
+ config: ConnectPaginationConfiguration,
9
+ input: ListAuthenticationProfilesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListAuthenticationProfilesCommandOutput>;
@@ -5,6 +5,7 @@ export * from "./GetMetricDataV2Paginator";
5
5
  export * from "./Interfaces";
6
6
  export * from "./ListAgentStatusesPaginator";
7
7
  export * from "./ListApprovedOriginsPaginator";
8
+ export * from "./ListAuthenticationProfilesPaginator";
8
9
  export * from "./ListBotsPaginator";
9
10
  export * from "./ListContactEvaluationsPaginator";
10
11
  export * from "./ListContactFlowModulesPaginator";
@@ -287,6 +287,10 @@ import {
287
287
  DescribeAgentStatusCommandInput,
288
288
  DescribeAgentStatusCommandOutput,
289
289
  } from "../commands/DescribeAgentStatusCommand";
290
+ import {
291
+ DescribeAuthenticationProfileCommandInput,
292
+ DescribeAuthenticationProfileCommandOutput,
293
+ } from "../commands/DescribeAuthenticationProfileCommand";
290
294
  import {
291
295
  DescribeContactCommandInput,
292
296
  DescribeContactCommandOutput,
@@ -495,6 +499,10 @@ import {
495
499
  ListApprovedOriginsCommandInput,
496
500
  ListApprovedOriginsCommandOutput,
497
501
  } from "../commands/ListApprovedOriginsCommand";
502
+ import {
503
+ ListAuthenticationProfilesCommandInput,
504
+ ListAuthenticationProfilesCommandOutput,
505
+ } from "../commands/ListAuthenticationProfilesCommand";
498
506
  import {
499
507
  ListBotsCommandInput,
500
508
  ListBotsCommandOutput,
@@ -823,6 +831,10 @@ import {
823
831
  UpdateAgentStatusCommandInput,
824
832
  UpdateAgentStatusCommandOutput,
825
833
  } from "../commands/UpdateAgentStatusCommand";
834
+ import {
835
+ UpdateAuthenticationProfileCommandInput,
836
+ UpdateAuthenticationProfileCommandOutput,
837
+ } from "../commands/UpdateAuthenticationProfileCommand";
826
838
  import {
827
839
  UpdateContactAttributesCommandInput,
828
840
  UpdateContactAttributesCommandOutput,
@@ -1287,6 +1299,10 @@ export declare const se_DescribeAgentStatusCommand: (
1287
1299
  input: DescribeAgentStatusCommandInput,
1288
1300
  context: __SerdeContext
1289
1301
  ) => Promise<__HttpRequest>;
1302
+ export declare const se_DescribeAuthenticationProfileCommand: (
1303
+ input: DescribeAuthenticationProfileCommandInput,
1304
+ context: __SerdeContext
1305
+ ) => Promise<__HttpRequest>;
1290
1306
  export declare const se_DescribeContactCommand: (
1291
1307
  input: DescribeContactCommandInput,
1292
1308
  context: __SerdeContext
@@ -1495,6 +1511,10 @@ export declare const se_ListApprovedOriginsCommand: (
1495
1511
  input: ListApprovedOriginsCommandInput,
1496
1512
  context: __SerdeContext
1497
1513
  ) => Promise<__HttpRequest>;
1514
+ export declare const se_ListAuthenticationProfilesCommand: (
1515
+ input: ListAuthenticationProfilesCommandInput,
1516
+ context: __SerdeContext
1517
+ ) => Promise<__HttpRequest>;
1498
1518
  export declare const se_ListBotsCommand: (
1499
1519
  input: ListBotsCommandInput,
1500
1520
  context: __SerdeContext
@@ -1823,6 +1843,10 @@ export declare const se_UpdateAgentStatusCommand: (
1823
1843
  input: UpdateAgentStatusCommandInput,
1824
1844
  context: __SerdeContext
1825
1845
  ) => Promise<__HttpRequest>;
1846
+ export declare const se_UpdateAuthenticationProfileCommand: (
1847
+ input: UpdateAuthenticationProfileCommandInput,
1848
+ context: __SerdeContext
1849
+ ) => Promise<__HttpRequest>;
1826
1850
  export declare const se_UpdateContactCommand: (
1827
1851
  input: UpdateContactCommandInput,
1828
1852
  context: __SerdeContext
@@ -2287,6 +2311,10 @@ export declare const de_DescribeAgentStatusCommand: (
2287
2311
  output: __HttpResponse,
2288
2312
  context: __SerdeContext
2289
2313
  ) => Promise<DescribeAgentStatusCommandOutput>;
2314
+ export declare const de_DescribeAuthenticationProfileCommand: (
2315
+ output: __HttpResponse,
2316
+ context: __SerdeContext
2317
+ ) => Promise<DescribeAuthenticationProfileCommandOutput>;
2290
2318
  export declare const de_DescribeContactCommand: (
2291
2319
  output: __HttpResponse,
2292
2320
  context: __SerdeContext
@@ -2495,6 +2523,10 @@ export declare const de_ListApprovedOriginsCommand: (
2495
2523
  output: __HttpResponse,
2496
2524
  context: __SerdeContext
2497
2525
  ) => Promise<ListApprovedOriginsCommandOutput>;
2526
+ export declare const de_ListAuthenticationProfilesCommand: (
2527
+ output: __HttpResponse,
2528
+ context: __SerdeContext
2529
+ ) => Promise<ListAuthenticationProfilesCommandOutput>;
2498
2530
  export declare const de_ListBotsCommand: (
2499
2531
  output: __HttpResponse,
2500
2532
  context: __SerdeContext
@@ -2823,6 +2855,10 @@ export declare const de_UpdateAgentStatusCommand: (
2823
2855
  output: __HttpResponse,
2824
2856
  context: __SerdeContext
2825
2857
  ) => Promise<UpdateAgentStatusCommandOutput>;
2858
+ export declare const de_UpdateAuthenticationProfileCommand: (
2859
+ output: __HttpResponse,
2860
+ context: __SerdeContext
2861
+ ) => Promise<UpdateAuthenticationProfileCommandOutput>;
2826
2862
  export declare const de_UpdateContactCommand: (
2827
2863
  output: __HttpResponse,
2828
2864
  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.607.0",
4
+ "version": "3.609.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connect",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.606.0",
24
- "@aws-sdk/client-sts": "3.606.0",
25
- "@aws-sdk/core": "3.598.0",
26
- "@aws-sdk/credential-provider-node": "3.600.0",
27
- "@aws-sdk/middleware-host-header": "3.598.0",
28
- "@aws-sdk/middleware-logger": "3.598.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.598.0",
30
- "@aws-sdk/middleware-user-agent": "3.598.0",
31
- "@aws-sdk/region-config-resolver": "3.598.0",
32
- "@aws-sdk/types": "3.598.0",
33
- "@aws-sdk/util-endpoints": "3.598.0",
34
- "@aws-sdk/util-user-agent-browser": "3.598.0",
35
- "@aws-sdk/util-user-agent-node": "3.598.0",
36
- "@smithy/config-resolver": "^3.0.2",
37
- "@smithy/core": "^2.2.1",
38
- "@smithy/fetch-http-handler": "^3.0.2",
39
- "@smithy/hash-node": "^3.0.1",
40
- "@smithy/invalid-dependency": "^3.0.1",
41
- "@smithy/middleware-content-length": "^3.0.1",
42
- "@smithy/middleware-endpoint": "^3.0.2",
43
- "@smithy/middleware-retry": "^3.0.4",
44
- "@smithy/middleware-serde": "^3.0.1",
45
- "@smithy/middleware-stack": "^3.0.1",
46
- "@smithy/node-config-provider": "^3.1.1",
47
- "@smithy/node-http-handler": "^3.0.1",
48
- "@smithy/protocol-http": "^4.0.1",
49
- "@smithy/smithy-client": "^3.1.2",
50
- "@smithy/types": "^3.1.0",
51
- "@smithy/url-parser": "^3.0.1",
23
+ "@aws-sdk/client-sso-oidc": "3.609.0",
24
+ "@aws-sdk/client-sts": "3.609.0",
25
+ "@aws-sdk/core": "3.609.0",
26
+ "@aws-sdk/credential-provider-node": "3.609.0",
27
+ "@aws-sdk/middleware-host-header": "3.609.0",
28
+ "@aws-sdk/middleware-logger": "3.609.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.609.0",
30
+ "@aws-sdk/middleware-user-agent": "3.609.0",
31
+ "@aws-sdk/region-config-resolver": "3.609.0",
32
+ "@aws-sdk/types": "3.609.0",
33
+ "@aws-sdk/util-endpoints": "3.609.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.609.0",
35
+ "@aws-sdk/util-user-agent-node": "3.609.0",
36
+ "@smithy/config-resolver": "^3.0.4",
37
+ "@smithy/core": "^2.2.4",
38
+ "@smithy/fetch-http-handler": "^3.2.0",
39
+ "@smithy/hash-node": "^3.0.3",
40
+ "@smithy/invalid-dependency": "^3.0.3",
41
+ "@smithy/middleware-content-length": "^3.0.3",
42
+ "@smithy/middleware-endpoint": "^3.0.4",
43
+ "@smithy/middleware-retry": "^3.0.7",
44
+ "@smithy/middleware-serde": "^3.0.3",
45
+ "@smithy/middleware-stack": "^3.0.3",
46
+ "@smithy/node-config-provider": "^3.1.3",
47
+ "@smithy/node-http-handler": "^3.1.1",
48
+ "@smithy/protocol-http": "^4.0.3",
49
+ "@smithy/smithy-client": "^3.1.5",
50
+ "@smithy/types": "^3.3.0",
51
+ "@smithy/url-parser": "^3.0.3",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.4",
56
- "@smithy/util-defaults-mode-node": "^3.0.4",
57
- "@smithy/util-endpoints": "^2.0.2",
58
- "@smithy/util-middleware": "^3.0.1",
59
- "@smithy/util-retry": "^3.0.1",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.7",
56
+ "@smithy/util-defaults-mode-node": "^3.0.7",
57
+ "@smithy/util-endpoints": "^2.0.4",
58
+ "@smithy/util-middleware": "^3.0.3",
59
+ "@smithy/util-retry": "^3.0.3",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2",
62
62
  "uuid": "^9.0.1"