@aws-sdk/client-workspaces-web 3.974.0 → 3.978.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/dist-cjs/index.js CHANGED
@@ -3008,6 +3008,30 @@ class UpdateUserSettingsCommand extends smithyClient.Command
3008
3008
  .build() {
3009
3009
  }
3010
3010
 
3011
+ const paginateListBrowserSettings = core.createPaginator(WorkSpacesWebClient, ListBrowserSettingsCommand, "nextToken", "nextToken", "maxResults");
3012
+
3013
+ const paginateListDataProtectionSettings = core.createPaginator(WorkSpacesWebClient, ListDataProtectionSettingsCommand, "nextToken", "nextToken", "maxResults");
3014
+
3015
+ const paginateListIdentityProviders = core.createPaginator(WorkSpacesWebClient, ListIdentityProvidersCommand, "nextToken", "nextToken", "maxResults");
3016
+
3017
+ const paginateListIpAccessSettings = core.createPaginator(WorkSpacesWebClient, ListIpAccessSettingsCommand, "nextToken", "nextToken", "maxResults");
3018
+
3019
+ const paginateListNetworkSettings = core.createPaginator(WorkSpacesWebClient, ListNetworkSettingsCommand, "nextToken", "nextToken", "maxResults");
3020
+
3021
+ const paginateListPortals = core.createPaginator(WorkSpacesWebClient, ListPortalsCommand, "nextToken", "nextToken", "maxResults");
3022
+
3023
+ const paginateListSessionLoggers = core.createPaginator(WorkSpacesWebClient, ListSessionLoggersCommand, "nextToken", "nextToken", "maxResults");
3024
+
3025
+ const paginateListSessions = core.createPaginator(WorkSpacesWebClient, ListSessionsCommand, "nextToken", "nextToken", "maxResults");
3026
+
3027
+ const paginateListTrustStoreCertificates = core.createPaginator(WorkSpacesWebClient, ListTrustStoreCertificatesCommand, "nextToken", "nextToken", "maxResults");
3028
+
3029
+ const paginateListTrustStores = core.createPaginator(WorkSpacesWebClient, ListTrustStoresCommand, "nextToken", "nextToken", "maxResults");
3030
+
3031
+ const paginateListUserAccessLoggingSettings = core.createPaginator(WorkSpacesWebClient, ListUserAccessLoggingSettingsCommand, "nextToken", "nextToken", "maxResults");
3032
+
3033
+ const paginateListUserSettings = core.createPaginator(WorkSpacesWebClient, ListUserSettingsCommand, "nextToken", "nextToken", "maxResults");
3034
+
3011
3035
  const commands = {
3012
3036
  AssociateBrowserSettingsCommand,
3013
3037
  AssociateDataProtectionSettingsCommand,
@@ -3085,33 +3109,23 @@ const commands = {
3085
3109
  UpdateUserAccessLoggingSettingsCommand,
3086
3110
  UpdateUserSettingsCommand,
3087
3111
  };
3112
+ const paginators = {
3113
+ paginateListBrowserSettings,
3114
+ paginateListDataProtectionSettings,
3115
+ paginateListIdentityProviders,
3116
+ paginateListIpAccessSettings,
3117
+ paginateListNetworkSettings,
3118
+ paginateListPortals,
3119
+ paginateListSessionLoggers,
3120
+ paginateListSessions,
3121
+ paginateListTrustStoreCertificates,
3122
+ paginateListTrustStores,
3123
+ paginateListUserAccessLoggingSettings,
3124
+ paginateListUserSettings,
3125
+ };
3088
3126
  class WorkSpacesWeb extends WorkSpacesWebClient {
3089
3127
  }
3090
- smithyClient.createAggregatedClient(commands, WorkSpacesWeb);
3091
-
3092
- const paginateListBrowserSettings = core.createPaginator(WorkSpacesWebClient, ListBrowserSettingsCommand, "nextToken", "nextToken", "maxResults");
3093
-
3094
- const paginateListDataProtectionSettings = core.createPaginator(WorkSpacesWebClient, ListDataProtectionSettingsCommand, "nextToken", "nextToken", "maxResults");
3095
-
3096
- const paginateListIdentityProviders = core.createPaginator(WorkSpacesWebClient, ListIdentityProvidersCommand, "nextToken", "nextToken", "maxResults");
3097
-
3098
- const paginateListIpAccessSettings = core.createPaginator(WorkSpacesWebClient, ListIpAccessSettingsCommand, "nextToken", "nextToken", "maxResults");
3099
-
3100
- const paginateListNetworkSettings = core.createPaginator(WorkSpacesWebClient, ListNetworkSettingsCommand, "nextToken", "nextToken", "maxResults");
3101
-
3102
- const paginateListPortals = core.createPaginator(WorkSpacesWebClient, ListPortalsCommand, "nextToken", "nextToken", "maxResults");
3103
-
3104
- const paginateListSessionLoggers = core.createPaginator(WorkSpacesWebClient, ListSessionLoggersCommand, "nextToken", "nextToken", "maxResults");
3105
-
3106
- const paginateListSessions = core.createPaginator(WorkSpacesWebClient, ListSessionsCommand, "nextToken", "nextToken", "maxResults");
3107
-
3108
- const paginateListTrustStoreCertificates = core.createPaginator(WorkSpacesWebClient, ListTrustStoreCertificatesCommand, "nextToken", "nextToken", "maxResults");
3109
-
3110
- const paginateListTrustStores = core.createPaginator(WorkSpacesWebClient, ListTrustStoresCommand, "nextToken", "nextToken", "maxResults");
3111
-
3112
- const paginateListUserAccessLoggingSettings = core.createPaginator(WorkSpacesWebClient, ListUserAccessLoggingSettingsCommand, "nextToken", "nextToken", "maxResults");
3113
-
3114
- const paginateListUserSettings = core.createPaginator(WorkSpacesWebClient, ListUserSettingsCommand, "nextToken", "nextToken", "maxResults");
3128
+ smithyClient.createAggregatedClient(commands, WorkSpacesWeb, { paginators });
3115
3129
 
3116
3130
  const ValidationExceptionReason = {
3117
3131
  CANNOT_PARSE: "cannotParse",
@@ -74,6 +74,18 @@ import { UpdateSessionLoggerCommand, } from "./commands/UpdateSessionLoggerComma
74
74
  import { UpdateTrustStoreCommand, } from "./commands/UpdateTrustStoreCommand";
75
75
  import { UpdateUserAccessLoggingSettingsCommand, } from "./commands/UpdateUserAccessLoggingSettingsCommand";
76
76
  import { UpdateUserSettingsCommand, } from "./commands/UpdateUserSettingsCommand";
77
+ import { paginateListBrowserSettings } from "./pagination/ListBrowserSettingsPaginator";
78
+ import { paginateListDataProtectionSettings } from "./pagination/ListDataProtectionSettingsPaginator";
79
+ import { paginateListIdentityProviders } from "./pagination/ListIdentityProvidersPaginator";
80
+ import { paginateListIpAccessSettings } from "./pagination/ListIpAccessSettingsPaginator";
81
+ import { paginateListNetworkSettings } from "./pagination/ListNetworkSettingsPaginator";
82
+ import { paginateListPortals } from "./pagination/ListPortalsPaginator";
83
+ import { paginateListSessionLoggers } from "./pagination/ListSessionLoggersPaginator";
84
+ import { paginateListSessions } from "./pagination/ListSessionsPaginator";
85
+ import { paginateListTrustStoreCertificates } from "./pagination/ListTrustStoreCertificatesPaginator";
86
+ import { paginateListTrustStores } from "./pagination/ListTrustStoresPaginator";
87
+ import { paginateListUserAccessLoggingSettings } from "./pagination/ListUserAccessLoggingSettingsPaginator";
88
+ import { paginateListUserSettings } from "./pagination/ListUserSettingsPaginator";
77
89
  import { WorkSpacesWebClient } from "./WorkSpacesWebClient";
78
90
  const commands = {
79
91
  AssociateBrowserSettingsCommand,
@@ -152,6 +164,20 @@ const commands = {
152
164
  UpdateUserAccessLoggingSettingsCommand,
153
165
  UpdateUserSettingsCommand,
154
166
  };
167
+ const paginators = {
168
+ paginateListBrowserSettings,
169
+ paginateListDataProtectionSettings,
170
+ paginateListIdentityProviders,
171
+ paginateListIpAccessSettings,
172
+ paginateListNetworkSettings,
173
+ paginateListPortals,
174
+ paginateListSessionLoggers,
175
+ paginateListSessions,
176
+ paginateListTrustStoreCertificates,
177
+ paginateListTrustStores,
178
+ paginateListUserAccessLoggingSettings,
179
+ paginateListUserSettings,
180
+ };
155
181
  export class WorkSpacesWeb extends WorkSpacesWebClient {
156
182
  }
157
- createAggregatedClient(commands, WorkSpacesWeb);
183
+ createAggregatedClient(commands, WorkSpacesWeb, { paginators });
@@ -1,4 +1,4 @@
1
- import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
2
2
  import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOutput } from "./commands/AssociateBrowserSettingsCommand";
3
3
  import { AssociateDataProtectionSettingsCommandInput, AssociateDataProtectionSettingsCommandOutput } from "./commands/AssociateDataProtectionSettingsCommand";
4
4
  import { AssociateIpAccessSettingsCommandInput, AssociateIpAccessSettingsCommandOutput } from "./commands/AssociateIpAccessSettingsCommand";
@@ -538,6 +538,90 @@ export interface WorkSpacesWeb {
538
538
  updateUserSettings(args: UpdateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserSettingsCommandOutput>;
539
539
  updateUserSettings(args: UpdateUserSettingsCommandInput, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
540
540
  updateUserSettings(args: UpdateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
541
+ /**
542
+ * @see {@link ListBrowserSettingsCommand}
543
+ * @param args - command input.
544
+ * @param paginationConfig - optional pagination config.
545
+ * @returns AsyncIterable of {@link ListBrowserSettingsCommandOutput}.
546
+ */
547
+ paginateListBrowserSettings(args?: ListBrowserSettingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBrowserSettingsCommandOutput>;
548
+ /**
549
+ * @see {@link ListDataProtectionSettingsCommand}
550
+ * @param args - command input.
551
+ * @param paginationConfig - optional pagination config.
552
+ * @returns AsyncIterable of {@link ListDataProtectionSettingsCommandOutput}.
553
+ */
554
+ paginateListDataProtectionSettings(args?: ListDataProtectionSettingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataProtectionSettingsCommandOutput>;
555
+ /**
556
+ * @see {@link ListIdentityProvidersCommand}
557
+ * @param args - command input.
558
+ * @param paginationConfig - optional pagination config.
559
+ * @returns AsyncIterable of {@link ListIdentityProvidersCommandOutput}.
560
+ */
561
+ paginateListIdentityProviders(args: ListIdentityProvidersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIdentityProvidersCommandOutput>;
562
+ /**
563
+ * @see {@link ListIpAccessSettingsCommand}
564
+ * @param args - command input.
565
+ * @param paginationConfig - optional pagination config.
566
+ * @returns AsyncIterable of {@link ListIpAccessSettingsCommandOutput}.
567
+ */
568
+ paginateListIpAccessSettings(args?: ListIpAccessSettingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIpAccessSettingsCommandOutput>;
569
+ /**
570
+ * @see {@link ListNetworkSettingsCommand}
571
+ * @param args - command input.
572
+ * @param paginationConfig - optional pagination config.
573
+ * @returns AsyncIterable of {@link ListNetworkSettingsCommandOutput}.
574
+ */
575
+ paginateListNetworkSettings(args?: ListNetworkSettingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNetworkSettingsCommandOutput>;
576
+ /**
577
+ * @see {@link ListPortalsCommand}
578
+ * @param args - command input.
579
+ * @param paginationConfig - optional pagination config.
580
+ * @returns AsyncIterable of {@link ListPortalsCommandOutput}.
581
+ */
582
+ paginateListPortals(args?: ListPortalsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPortalsCommandOutput>;
583
+ /**
584
+ * @see {@link ListSessionLoggersCommand}
585
+ * @param args - command input.
586
+ * @param paginationConfig - optional pagination config.
587
+ * @returns AsyncIterable of {@link ListSessionLoggersCommandOutput}.
588
+ */
589
+ paginateListSessionLoggers(args?: ListSessionLoggersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSessionLoggersCommandOutput>;
590
+ /**
591
+ * @see {@link ListSessionsCommand}
592
+ * @param args - command input.
593
+ * @param paginationConfig - optional pagination config.
594
+ * @returns AsyncIterable of {@link ListSessionsCommandOutput}.
595
+ */
596
+ paginateListSessions(args: ListSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSessionsCommandOutput>;
597
+ /**
598
+ * @see {@link ListTrustStoreCertificatesCommand}
599
+ * @param args - command input.
600
+ * @param paginationConfig - optional pagination config.
601
+ * @returns AsyncIterable of {@link ListTrustStoreCertificatesCommandOutput}.
602
+ */
603
+ paginateListTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrustStoreCertificatesCommandOutput>;
604
+ /**
605
+ * @see {@link ListTrustStoresCommand}
606
+ * @param args - command input.
607
+ * @param paginationConfig - optional pagination config.
608
+ * @returns AsyncIterable of {@link ListTrustStoresCommandOutput}.
609
+ */
610
+ paginateListTrustStores(args?: ListTrustStoresCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrustStoresCommandOutput>;
611
+ /**
612
+ * @see {@link ListUserAccessLoggingSettingsCommand}
613
+ * @param args - command input.
614
+ * @param paginationConfig - optional pagination config.
615
+ * @returns AsyncIterable of {@link ListUserAccessLoggingSettingsCommandOutput}.
616
+ */
617
+ paginateListUserAccessLoggingSettings(args?: ListUserAccessLoggingSettingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUserAccessLoggingSettingsCommandOutput>;
618
+ /**
619
+ * @see {@link ListUserSettingsCommand}
620
+ * @param args - command input.
621
+ * @param paginationConfig - optional pagination config.
622
+ * @returns AsyncIterable of {@link ListUserSettingsCommandOutput}.
623
+ */
624
+ paginateListUserSettings(args?: ListUserSettingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUserSettingsCommandOutput>;
541
625
  }
542
626
  /**
543
627
  * <p>Amazon WorkSpaces Secure Browser is a low cost, fully managed WorkSpace built specifically to facilitate secure, web-based workloads. WorkSpaces Secure Browser makes it easy for customers to safely provide their employees with access to internal websites and SaaS web applications without the administrative burden of appliances or specialized client software. WorkSpaces Secure Browser provides simple policy tools tailored for user interactions, while offloading common tasks like capacity management, scaling, and maintaining browser images.</p>
@@ -1,4 +1,8 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import {
2
+ HttpHandlerOptions as __HttpHandlerOptions,
3
+ PaginationConfiguration,
4
+ Paginator,
5
+ } from "@smithy/types";
2
6
  import {
3
7
  AssociateBrowserSettingsCommandInput,
4
8
  AssociateBrowserSettingsCommandOutput,
@@ -1306,6 +1310,90 @@ export interface WorkSpacesWeb {
1306
1310
  options: __HttpHandlerOptions,
1307
1311
  cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void
1308
1312
  ): void;
1313
+ paginateListBrowserSettings(
1314
+ args?: ListBrowserSettingsCommandInput,
1315
+ paginationConfig?: Pick<
1316
+ PaginationConfiguration,
1317
+ Exclude<keyof PaginationConfiguration, "client">
1318
+ >
1319
+ ): Paginator<ListBrowserSettingsCommandOutput>;
1320
+ paginateListDataProtectionSettings(
1321
+ args?: ListDataProtectionSettingsCommandInput,
1322
+ paginationConfig?: Pick<
1323
+ PaginationConfiguration,
1324
+ Exclude<keyof PaginationConfiguration, "client">
1325
+ >
1326
+ ): Paginator<ListDataProtectionSettingsCommandOutput>;
1327
+ paginateListIdentityProviders(
1328
+ args: ListIdentityProvidersCommandInput,
1329
+ paginationConfig?: Pick<
1330
+ PaginationConfiguration,
1331
+ Exclude<keyof PaginationConfiguration, "client">
1332
+ >
1333
+ ): Paginator<ListIdentityProvidersCommandOutput>;
1334
+ paginateListIpAccessSettings(
1335
+ args?: ListIpAccessSettingsCommandInput,
1336
+ paginationConfig?: Pick<
1337
+ PaginationConfiguration,
1338
+ Exclude<keyof PaginationConfiguration, "client">
1339
+ >
1340
+ ): Paginator<ListIpAccessSettingsCommandOutput>;
1341
+ paginateListNetworkSettings(
1342
+ args?: ListNetworkSettingsCommandInput,
1343
+ paginationConfig?: Pick<
1344
+ PaginationConfiguration,
1345
+ Exclude<keyof PaginationConfiguration, "client">
1346
+ >
1347
+ ): Paginator<ListNetworkSettingsCommandOutput>;
1348
+ paginateListPortals(
1349
+ args?: ListPortalsCommandInput,
1350
+ paginationConfig?: Pick<
1351
+ PaginationConfiguration,
1352
+ Exclude<keyof PaginationConfiguration, "client">
1353
+ >
1354
+ ): Paginator<ListPortalsCommandOutput>;
1355
+ paginateListSessionLoggers(
1356
+ args?: ListSessionLoggersCommandInput,
1357
+ paginationConfig?: Pick<
1358
+ PaginationConfiguration,
1359
+ Exclude<keyof PaginationConfiguration, "client">
1360
+ >
1361
+ ): Paginator<ListSessionLoggersCommandOutput>;
1362
+ paginateListSessions(
1363
+ args: ListSessionsCommandInput,
1364
+ paginationConfig?: Pick<
1365
+ PaginationConfiguration,
1366
+ Exclude<keyof PaginationConfiguration, "client">
1367
+ >
1368
+ ): Paginator<ListSessionsCommandOutput>;
1369
+ paginateListTrustStoreCertificates(
1370
+ args: ListTrustStoreCertificatesCommandInput,
1371
+ paginationConfig?: Pick<
1372
+ PaginationConfiguration,
1373
+ Exclude<keyof PaginationConfiguration, "client">
1374
+ >
1375
+ ): Paginator<ListTrustStoreCertificatesCommandOutput>;
1376
+ paginateListTrustStores(
1377
+ args?: ListTrustStoresCommandInput,
1378
+ paginationConfig?: Pick<
1379
+ PaginationConfiguration,
1380
+ Exclude<keyof PaginationConfiguration, "client">
1381
+ >
1382
+ ): Paginator<ListTrustStoresCommandOutput>;
1383
+ paginateListUserAccessLoggingSettings(
1384
+ args?: ListUserAccessLoggingSettingsCommandInput,
1385
+ paginationConfig?: Pick<
1386
+ PaginationConfiguration,
1387
+ Exclude<keyof PaginationConfiguration, "client">
1388
+ >
1389
+ ): Paginator<ListUserAccessLoggingSettingsCommandOutput>;
1390
+ paginateListUserSettings(
1391
+ args?: ListUserSettingsCommandInput,
1392
+ paginationConfig?: Pick<
1393
+ PaginationConfiguration,
1394
+ Exclude<keyof PaginationConfiguration, "client">
1395
+ >
1396
+ ): Paginator<ListUserSettingsCommandOutput>;
1309
1397
  }
1310
1398
  export declare class WorkSpacesWeb
1311
1399
  extends WorkSpacesWebClient
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces-web",
3
3
  "description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native",
4
- "version": "3.974.0",
4
+ "version": "3.978.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-workspaces-web",
@@ -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.0",
25
- "@aws-sdk/credential-provider-node": "^3.972.1",
26
- "@aws-sdk/middleware-host-header": "^3.972.1",
27
- "@aws-sdk/middleware-logger": "^3.972.1",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.1",
29
- "@aws-sdk/middleware-user-agent": "^3.972.1",
30
- "@aws-sdk/region-config-resolver": "^3.972.1",
31
- "@aws-sdk/types": "^3.973.0",
24
+ "@aws-sdk/core": "^3.973.4",
25
+ "@aws-sdk/credential-provider-node": "^3.972.2",
26
+ "@aws-sdk/middleware-host-header": "^3.972.2",
27
+ "@aws-sdk/middleware-logger": "^3.972.2",
28
+ "@aws-sdk/middleware-recursion-detection": "^3.972.2",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.4",
30
+ "@aws-sdk/region-config-resolver": "^3.972.2",
31
+ "@aws-sdk/types": "^3.973.1",
32
32
  "@aws-sdk/util-endpoints": "3.972.0",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.1",
34
- "@aws-sdk/util-user-agent-node": "^3.972.1",
33
+ "@aws-sdk/util-user-agent-browser": "^3.972.2",
34
+ "@aws-sdk/util-user-agent-node": "^3.972.2",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
- "@smithy/core": "^3.21.0",
36
+ "@smithy/core": "^3.22.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.10",
42
- "@smithy/middleware-retry": "^4.4.26",
41
+ "@smithy/middleware-endpoint": "^4.4.12",
42
+ "@smithy/middleware-retry": "^4.4.29",
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
46
  "@smithy/node-http-handler": "^4.4.8",
47
47
  "@smithy/protocol-http": "^5.3.8",
48
- "@smithy/smithy-client": "^4.10.11",
48
+ "@smithy/smithy-client": "^4.11.1",
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.25",
55
- "@smithy/util-defaults-mode-node": "^4.2.28",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.28",
55
+ "@smithy/util-defaults-mode-node": "^4.2.31",
56
56
  "@smithy/util-endpoints": "^3.2.8",
57
57
  "@smithy/util-middleware": "^4.2.8",
58
58
  "@smithy/util-retry": "^4.2.8",