@aws-sdk/client-workmail 3.682.0 → 3.686.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 (58) hide show
  1. package/README.md +65 -1
  2. package/dist-cjs/index.js +386 -4
  3. package/dist-es/WorkMail.js +16 -0
  4. package/dist-es/commands/CreateIdentityCenterApplicationCommand.js +22 -0
  5. package/dist-es/commands/CreateResourceCommand.js +2 -1
  6. package/dist-es/commands/DeleteIdentityCenterApplicationCommand.js +22 -0
  7. package/dist-es/commands/DeleteIdentityProviderConfigurationCommand.js +22 -0
  8. package/dist-es/commands/DeletePersonalAccessTokenCommand.js +22 -0
  9. package/dist-es/commands/DescribeIdentityProviderConfigurationCommand.js +22 -0
  10. package/dist-es/commands/DescribeResourceCommand.js +2 -1
  11. package/dist-es/commands/GetPersonalAccessTokenMetadataCommand.js +22 -0
  12. package/dist-es/commands/ListPersonalAccessTokensCommand.js +22 -0
  13. package/dist-es/commands/ListResourcesCommand.js +2 -1
  14. package/dist-es/commands/PutIdentityProviderConfigurationCommand.js +22 -0
  15. package/dist-es/commands/UpdateResourceCommand.js +2 -1
  16. package/dist-es/commands/index.js +8 -0
  17. package/dist-es/models/models_0.js +28 -0
  18. package/dist-es/pagination/ListPersonalAccessTokensPaginator.js +4 -0
  19. package/dist-es/pagination/index.js +1 -0
  20. package/dist-es/protocols/Aws_json1_1.js +200 -0
  21. package/dist-types/WorkMail.d.ts +56 -0
  22. package/dist-types/WorkMailClient.d.ts +10 -2
  23. package/dist-types/commands/CreateIdentityCenterApplicationCommand.d.ts +78 -0
  24. package/dist-types/commands/CreateUserCommand.d.ts +1 -0
  25. package/dist-types/commands/DeleteIdentityCenterApplicationCommand.d.ts +78 -0
  26. package/dist-types/commands/DeleteIdentityProviderConfigurationCommand.d.ts +82 -0
  27. package/dist-types/commands/DeleteOrganizationCommand.d.ts +1 -0
  28. package/dist-types/commands/DeletePersonalAccessTokenCommand.d.ts +83 -0
  29. package/dist-types/commands/DescribeIdentityProviderConfigurationCommand.d.ts +95 -0
  30. package/dist-types/commands/DescribeUserCommand.d.ts +8 -0
  31. package/dist-types/commands/GetPersonalAccessTokenMetadataCommand.d.ts +96 -0
  32. package/dist-types/commands/ListAvailabilityConfigurationsCommand.d.ts +3 -0
  33. package/dist-types/commands/ListPersonalAccessTokensCommand.d.ts +108 -0
  34. package/dist-types/commands/ListUsersCommand.d.ts +3 -0
  35. package/dist-types/commands/PutIdentityProviderConfigurationCommand.d.ts +96 -0
  36. package/dist-types/commands/UpdateGroupCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateUserCommand.d.ts +1 -0
  38. package/dist-types/commands/index.d.ts +8 -0
  39. package/dist-types/models/models_0.d.ts +485 -1
  40. package/dist-types/pagination/ListPersonalAccessTokensPaginator.d.ts +7 -0
  41. package/dist-types/pagination/index.d.ts +1 -0
  42. package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
  43. package/dist-types/ts3.4/WorkMail.d.ts +148 -0
  44. package/dist-types/ts3.4/WorkMailClient.d.ts +48 -0
  45. package/dist-types/ts3.4/commands/CreateIdentityCenterApplicationCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/DeleteIdentityCenterApplicationCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/DeleteIdentityProviderConfigurationCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/DeletePersonalAccessTokenCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/DescribeIdentityProviderConfigurationCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/GetPersonalAccessTokenMetadataCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/ListPersonalAccessTokensCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/PutIdentityProviderConfigurationCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +111 -0
  55. package/dist-types/ts3.4/pagination/ListPersonalAccessTokensPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  57. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
  58. package/package.json +35 -35
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListPersonalAccessTokensCommandInput,
4
+ ListPersonalAccessTokensCommandOutput,
5
+ } from "../commands/ListPersonalAccessTokensCommand";
6
+ import { WorkMailPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListPersonalAccessTokens: (
8
+ config: WorkMailPaginationConfiguration,
9
+ input: ListPersonalAccessTokensCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListPersonalAccessTokensCommandOutput>;
@@ -10,6 +10,7 @@ export * from "./ListMailboxExportJobsPaginator";
10
10
  export * from "./ListMailboxPermissionsPaginator";
11
11
  export * from "./ListMobileDeviceAccessOverridesPaginator";
12
12
  export * from "./ListOrganizationsPaginator";
13
+ export * from "./ListPersonalAccessTokensPaginator";
13
14
  export * from "./ListResourceDelegatesPaginator";
14
15
  export * from "./ListResourcesPaginator";
15
16
  export * from "./ListUsersPaginator";
@@ -31,6 +31,10 @@ import {
31
31
  CreateGroupCommandInput,
32
32
  CreateGroupCommandOutput,
33
33
  } from "../commands/CreateGroupCommand";
34
+ import {
35
+ CreateIdentityCenterApplicationCommandInput,
36
+ CreateIdentityCenterApplicationCommandOutput,
37
+ } from "../commands/CreateIdentityCenterApplicationCommand";
34
38
  import {
35
39
  CreateImpersonationRoleCommandInput,
36
40
  CreateImpersonationRoleCommandOutput,
@@ -71,6 +75,14 @@ import {
71
75
  DeleteGroupCommandInput,
72
76
  DeleteGroupCommandOutput,
73
77
  } from "../commands/DeleteGroupCommand";
78
+ import {
79
+ DeleteIdentityCenterApplicationCommandInput,
80
+ DeleteIdentityCenterApplicationCommandOutput,
81
+ } from "../commands/DeleteIdentityCenterApplicationCommand";
82
+ import {
83
+ DeleteIdentityProviderConfigurationCommandInput,
84
+ DeleteIdentityProviderConfigurationCommandOutput,
85
+ } from "../commands/DeleteIdentityProviderConfigurationCommand";
74
86
  import {
75
87
  DeleteImpersonationRoleCommandInput,
76
88
  DeleteImpersonationRoleCommandOutput,
@@ -91,6 +103,10 @@ import {
91
103
  DeleteOrganizationCommandInput,
92
104
  DeleteOrganizationCommandOutput,
93
105
  } from "../commands/DeleteOrganizationCommand";
106
+ import {
107
+ DeletePersonalAccessTokenCommandInput,
108
+ DeletePersonalAccessTokenCommandOutput,
109
+ } from "../commands/DeletePersonalAccessTokenCommand";
94
110
  import {
95
111
  DeleteResourceCommandInput,
96
112
  DeleteResourceCommandOutput,
@@ -123,6 +139,10 @@ import {
123
139
  DescribeGroupCommandInput,
124
140
  DescribeGroupCommandOutput,
125
141
  } from "../commands/DescribeGroupCommand";
142
+ import {
143
+ DescribeIdentityProviderConfigurationCommandInput,
144
+ DescribeIdentityProviderConfigurationCommandOutput,
145
+ } from "../commands/DescribeIdentityProviderConfigurationCommand";
126
146
  import {
127
147
  DescribeInboundDmarcSettingsCommandInput,
128
148
  DescribeInboundDmarcSettingsCommandOutput,
@@ -183,6 +203,10 @@ import {
183
203
  GetMobileDeviceAccessOverrideCommandInput,
184
204
  GetMobileDeviceAccessOverrideCommandOutput,
185
205
  } from "../commands/GetMobileDeviceAccessOverrideCommand";
206
+ import {
207
+ GetPersonalAccessTokenMetadataCommandInput,
208
+ GetPersonalAccessTokenMetadataCommandOutput,
209
+ } from "../commands/GetPersonalAccessTokenMetadataCommand";
186
210
  import {
187
211
  ListAccessControlRulesCommandInput,
188
212
  ListAccessControlRulesCommandOutput,
@@ -235,6 +259,10 @@ import {
235
259
  ListOrganizationsCommandInput,
236
260
  ListOrganizationsCommandOutput,
237
261
  } from "../commands/ListOrganizationsCommand";
262
+ import {
263
+ ListPersonalAccessTokensCommandInput,
264
+ ListPersonalAccessTokensCommandOutput,
265
+ } from "../commands/ListPersonalAccessTokensCommand";
238
266
  import {
239
267
  ListResourceDelegatesCommandInput,
240
268
  ListResourceDelegatesCommandOutput,
@@ -259,6 +287,10 @@ import {
259
287
  PutEmailMonitoringConfigurationCommandInput,
260
288
  PutEmailMonitoringConfigurationCommandOutput,
261
289
  } from "../commands/PutEmailMonitoringConfigurationCommand";
290
+ import {
291
+ PutIdentityProviderConfigurationCommandInput,
292
+ PutIdentityProviderConfigurationCommandOutput,
293
+ } from "../commands/PutIdentityProviderConfigurationCommand";
262
294
  import {
263
295
  PutInboundDmarcSettingsCommandInput,
264
296
  PutInboundDmarcSettingsCommandOutput,
@@ -367,6 +399,10 @@ export declare const se_CreateGroupCommand: (
367
399
  input: CreateGroupCommandInput,
368
400
  context: __SerdeContext
369
401
  ) => Promise<__HttpRequest>;
402
+ export declare const se_CreateIdentityCenterApplicationCommand: (
403
+ input: CreateIdentityCenterApplicationCommandInput,
404
+ context: __SerdeContext
405
+ ) => Promise<__HttpRequest>;
370
406
  export declare const se_CreateImpersonationRoleCommand: (
371
407
  input: CreateImpersonationRoleCommandInput,
372
408
  context: __SerdeContext
@@ -407,6 +443,14 @@ export declare const se_DeleteGroupCommand: (
407
443
  input: DeleteGroupCommandInput,
408
444
  context: __SerdeContext
409
445
  ) => Promise<__HttpRequest>;
446
+ export declare const se_DeleteIdentityCenterApplicationCommand: (
447
+ input: DeleteIdentityCenterApplicationCommandInput,
448
+ context: __SerdeContext
449
+ ) => Promise<__HttpRequest>;
450
+ export declare const se_DeleteIdentityProviderConfigurationCommand: (
451
+ input: DeleteIdentityProviderConfigurationCommandInput,
452
+ context: __SerdeContext
453
+ ) => Promise<__HttpRequest>;
410
454
  export declare const se_DeleteImpersonationRoleCommand: (
411
455
  input: DeleteImpersonationRoleCommandInput,
412
456
  context: __SerdeContext
@@ -427,6 +471,10 @@ export declare const se_DeleteOrganizationCommand: (
427
471
  input: DeleteOrganizationCommandInput,
428
472
  context: __SerdeContext
429
473
  ) => Promise<__HttpRequest>;
474
+ export declare const se_DeletePersonalAccessTokenCommand: (
475
+ input: DeletePersonalAccessTokenCommandInput,
476
+ context: __SerdeContext
477
+ ) => Promise<__HttpRequest>;
430
478
  export declare const se_DeleteResourceCommand: (
431
479
  input: DeleteResourceCommandInput,
432
480
  context: __SerdeContext
@@ -459,6 +507,10 @@ export declare const se_DescribeGroupCommand: (
459
507
  input: DescribeGroupCommandInput,
460
508
  context: __SerdeContext
461
509
  ) => Promise<__HttpRequest>;
510
+ export declare const se_DescribeIdentityProviderConfigurationCommand: (
511
+ input: DescribeIdentityProviderConfigurationCommandInput,
512
+ context: __SerdeContext
513
+ ) => Promise<__HttpRequest>;
462
514
  export declare const se_DescribeInboundDmarcSettingsCommand: (
463
515
  input: DescribeInboundDmarcSettingsCommandInput,
464
516
  context: __SerdeContext
@@ -519,6 +571,10 @@ export declare const se_GetMobileDeviceAccessOverrideCommand: (
519
571
  input: GetMobileDeviceAccessOverrideCommandInput,
520
572
  context: __SerdeContext
521
573
  ) => Promise<__HttpRequest>;
574
+ export declare const se_GetPersonalAccessTokenMetadataCommand: (
575
+ input: GetPersonalAccessTokenMetadataCommandInput,
576
+ context: __SerdeContext
577
+ ) => Promise<__HttpRequest>;
522
578
  export declare const se_ListAccessControlRulesCommand: (
523
579
  input: ListAccessControlRulesCommandInput,
524
580
  context: __SerdeContext
@@ -571,6 +627,10 @@ export declare const se_ListOrganizationsCommand: (
571
627
  input: ListOrganizationsCommandInput,
572
628
  context: __SerdeContext
573
629
  ) => Promise<__HttpRequest>;
630
+ export declare const se_ListPersonalAccessTokensCommand: (
631
+ input: ListPersonalAccessTokensCommandInput,
632
+ context: __SerdeContext
633
+ ) => Promise<__HttpRequest>;
574
634
  export declare const se_ListResourceDelegatesCommand: (
575
635
  input: ListResourceDelegatesCommandInput,
576
636
  context: __SerdeContext
@@ -595,6 +655,10 @@ export declare const se_PutEmailMonitoringConfigurationCommand: (
595
655
  input: PutEmailMonitoringConfigurationCommandInput,
596
656
  context: __SerdeContext
597
657
  ) => Promise<__HttpRequest>;
658
+ export declare const se_PutIdentityProviderConfigurationCommand: (
659
+ input: PutIdentityProviderConfigurationCommandInput,
660
+ context: __SerdeContext
661
+ ) => Promise<__HttpRequest>;
598
662
  export declare const se_PutInboundDmarcSettingsCommand: (
599
663
  input: PutInboundDmarcSettingsCommandInput,
600
664
  context: __SerdeContext
@@ -703,6 +767,10 @@ export declare const de_CreateGroupCommand: (
703
767
  output: __HttpResponse,
704
768
  context: __SerdeContext
705
769
  ) => Promise<CreateGroupCommandOutput>;
770
+ export declare const de_CreateIdentityCenterApplicationCommand: (
771
+ output: __HttpResponse,
772
+ context: __SerdeContext
773
+ ) => Promise<CreateIdentityCenterApplicationCommandOutput>;
706
774
  export declare const de_CreateImpersonationRoleCommand: (
707
775
  output: __HttpResponse,
708
776
  context: __SerdeContext
@@ -743,6 +811,14 @@ export declare const de_DeleteGroupCommand: (
743
811
  output: __HttpResponse,
744
812
  context: __SerdeContext
745
813
  ) => Promise<DeleteGroupCommandOutput>;
814
+ export declare const de_DeleteIdentityCenterApplicationCommand: (
815
+ output: __HttpResponse,
816
+ context: __SerdeContext
817
+ ) => Promise<DeleteIdentityCenterApplicationCommandOutput>;
818
+ export declare const de_DeleteIdentityProviderConfigurationCommand: (
819
+ output: __HttpResponse,
820
+ context: __SerdeContext
821
+ ) => Promise<DeleteIdentityProviderConfigurationCommandOutput>;
746
822
  export declare const de_DeleteImpersonationRoleCommand: (
747
823
  output: __HttpResponse,
748
824
  context: __SerdeContext
@@ -763,6 +839,10 @@ export declare const de_DeleteOrganizationCommand: (
763
839
  output: __HttpResponse,
764
840
  context: __SerdeContext
765
841
  ) => Promise<DeleteOrganizationCommandOutput>;
842
+ export declare const de_DeletePersonalAccessTokenCommand: (
843
+ output: __HttpResponse,
844
+ context: __SerdeContext
845
+ ) => Promise<DeletePersonalAccessTokenCommandOutput>;
766
846
  export declare const de_DeleteResourceCommand: (
767
847
  output: __HttpResponse,
768
848
  context: __SerdeContext
@@ -795,6 +875,10 @@ export declare const de_DescribeGroupCommand: (
795
875
  output: __HttpResponse,
796
876
  context: __SerdeContext
797
877
  ) => Promise<DescribeGroupCommandOutput>;
878
+ export declare const de_DescribeIdentityProviderConfigurationCommand: (
879
+ output: __HttpResponse,
880
+ context: __SerdeContext
881
+ ) => Promise<DescribeIdentityProviderConfigurationCommandOutput>;
798
882
  export declare const de_DescribeInboundDmarcSettingsCommand: (
799
883
  output: __HttpResponse,
800
884
  context: __SerdeContext
@@ -855,6 +939,10 @@ export declare const de_GetMobileDeviceAccessOverrideCommand: (
855
939
  output: __HttpResponse,
856
940
  context: __SerdeContext
857
941
  ) => Promise<GetMobileDeviceAccessOverrideCommandOutput>;
942
+ export declare const de_GetPersonalAccessTokenMetadataCommand: (
943
+ output: __HttpResponse,
944
+ context: __SerdeContext
945
+ ) => Promise<GetPersonalAccessTokenMetadataCommandOutput>;
858
946
  export declare const de_ListAccessControlRulesCommand: (
859
947
  output: __HttpResponse,
860
948
  context: __SerdeContext
@@ -907,6 +995,10 @@ export declare const de_ListOrganizationsCommand: (
907
995
  output: __HttpResponse,
908
996
  context: __SerdeContext
909
997
  ) => Promise<ListOrganizationsCommandOutput>;
998
+ export declare const de_ListPersonalAccessTokensCommand: (
999
+ output: __HttpResponse,
1000
+ context: __SerdeContext
1001
+ ) => Promise<ListPersonalAccessTokensCommandOutput>;
910
1002
  export declare const de_ListResourceDelegatesCommand: (
911
1003
  output: __HttpResponse,
912
1004
  context: __SerdeContext
@@ -931,6 +1023,10 @@ export declare const de_PutEmailMonitoringConfigurationCommand: (
931
1023
  output: __HttpResponse,
932
1024
  context: __SerdeContext
933
1025
  ) => Promise<PutEmailMonitoringConfigurationCommandOutput>;
1026
+ export declare const de_PutIdentityProviderConfigurationCommand: (
1027
+ output: __HttpResponse,
1028
+ context: __SerdeContext
1029
+ ) => Promise<PutIdentityProviderConfigurationCommandOutput>;
934
1030
  export declare const de_PutInboundDmarcSettingsCommand: (
935
1031
  output: __HttpResponse,
936
1032
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workmail",
3
3
  "description": "AWS SDK for JavaScript Workmail Client for Node.js, Browser and React Native",
4
- "version": "3.682.0",
4
+ "version": "3.686.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-workmail",
@@ -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.682.0",
24
- "@aws-sdk/client-sts": "3.682.0",
25
- "@aws-sdk/core": "3.679.0",
26
- "@aws-sdk/credential-provider-node": "3.682.0",
27
- "@aws-sdk/middleware-host-header": "3.679.0",
28
- "@aws-sdk/middleware-logger": "3.679.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.679.0",
30
- "@aws-sdk/middleware-user-agent": "3.682.0",
31
- "@aws-sdk/region-config-resolver": "3.679.0",
32
- "@aws-sdk/types": "3.679.0",
33
- "@aws-sdk/util-endpoints": "3.679.0",
34
- "@aws-sdk/util-user-agent-browser": "3.679.0",
35
- "@aws-sdk/util-user-agent-node": "3.682.0",
36
- "@smithy/config-resolver": "^3.0.9",
37
- "@smithy/core": "^2.4.8",
38
- "@smithy/fetch-http-handler": "^3.2.9",
39
- "@smithy/hash-node": "^3.0.7",
40
- "@smithy/invalid-dependency": "^3.0.7",
41
- "@smithy/middleware-content-length": "^3.0.9",
42
- "@smithy/middleware-endpoint": "^3.1.4",
43
- "@smithy/middleware-retry": "^3.0.23",
44
- "@smithy/middleware-serde": "^3.0.7",
45
- "@smithy/middleware-stack": "^3.0.7",
46
- "@smithy/node-config-provider": "^3.1.8",
47
- "@smithy/node-http-handler": "^3.2.4",
48
- "@smithy/protocol-http": "^4.1.4",
49
- "@smithy/smithy-client": "^3.4.0",
50
- "@smithy/types": "^3.5.0",
51
- "@smithy/url-parser": "^3.0.7",
23
+ "@aws-sdk/client-sso-oidc": "3.686.0",
24
+ "@aws-sdk/client-sts": "3.686.0",
25
+ "@aws-sdk/core": "3.686.0",
26
+ "@aws-sdk/credential-provider-node": "3.686.0",
27
+ "@aws-sdk/middleware-host-header": "3.686.0",
28
+ "@aws-sdk/middleware-logger": "3.686.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.686.0",
31
+ "@aws-sdk/region-config-resolver": "3.686.0",
32
+ "@aws-sdk/types": "3.686.0",
33
+ "@aws-sdk/util-endpoints": "3.686.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.686.0",
36
+ "@smithy/config-resolver": "^3.0.10",
37
+ "@smithy/core": "^2.5.1",
38
+ "@smithy/fetch-http-handler": "^4.0.0",
39
+ "@smithy/hash-node": "^3.0.8",
40
+ "@smithy/invalid-dependency": "^3.0.8",
41
+ "@smithy/middleware-content-length": "^3.0.10",
42
+ "@smithy/middleware-endpoint": "^3.2.1",
43
+ "@smithy/middleware-retry": "^3.0.25",
44
+ "@smithy/middleware-serde": "^3.0.8",
45
+ "@smithy/middleware-stack": "^3.0.8",
46
+ "@smithy/node-config-provider": "^3.1.9",
47
+ "@smithy/node-http-handler": "^3.2.5",
48
+ "@smithy/protocol-http": "^4.1.5",
49
+ "@smithy/smithy-client": "^3.4.2",
50
+ "@smithy/types": "^3.6.0",
51
+ "@smithy/url-parser": "^3.0.8",
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.23",
56
- "@smithy/util-defaults-mode-node": "^3.0.23",
57
- "@smithy/util-endpoints": "^2.1.3",
58
- "@smithy/util-middleware": "^3.0.7",
59
- "@smithy/util-retry": "^3.0.7",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.25",
56
+ "@smithy/util-defaults-mode-node": "^3.0.25",
57
+ "@smithy/util-endpoints": "^2.1.4",
58
+ "@smithy/util-middleware": "^3.0.8",
59
+ "@smithy/util-retry": "^3.0.8",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",