@aws-sdk/client-healthlake 3.650.0 → 3.654.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 (27) hide show
  1. package/dist-types/commands/CreateFHIRDatastoreCommand.d.ts +11 -0
  2. package/dist-types/commands/DeleteFHIRDatastoreCommand.d.ts +11 -0
  3. package/dist-types/commands/DescribeFHIRDatastoreCommand.d.ts +11 -0
  4. package/dist-types/commands/DescribeFHIRExportJobCommand.d.ts +11 -0
  5. package/dist-types/commands/DescribeFHIRImportJobCommand.d.ts +11 -0
  6. package/dist-types/commands/ListFHIRDatastoresCommand.d.ts +11 -0
  7. package/dist-types/commands/ListFHIRExportJobsCommand.d.ts +11 -0
  8. package/dist-types/commands/ListFHIRImportJobsCommand.d.ts +11 -0
  9. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  10. package/dist-types/commands/StartFHIRExportJobCommand.d.ts +11 -0
  11. package/dist-types/commands/StartFHIRImportJobCommand.d.ts +11 -0
  12. package/dist-types/commands/TagResourceCommand.d.ts +11 -0
  13. package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
  14. package/dist-types/ts3.4/commands/CreateFHIRDatastoreCommand.d.ts +12 -1
  15. package/dist-types/ts3.4/commands/DeleteFHIRDatastoreCommand.d.ts +12 -1
  16. package/dist-types/ts3.4/commands/DescribeFHIRDatastoreCommand.d.ts +12 -1
  17. package/dist-types/ts3.4/commands/DescribeFHIRExportJobCommand.d.ts +12 -1
  18. package/dist-types/ts3.4/commands/DescribeFHIRImportJobCommand.d.ts +12 -1
  19. package/dist-types/ts3.4/commands/ListFHIRDatastoresCommand.d.ts +12 -1
  20. package/dist-types/ts3.4/commands/ListFHIRExportJobsCommand.d.ts +12 -1
  21. package/dist-types/ts3.4/commands/ListFHIRImportJobsCommand.d.ts +12 -1
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +12 -1
  23. package/dist-types/ts3.4/commands/StartFHIRExportJobCommand.d.ts +12 -1
  24. package/dist-types/ts3.4/commands/StartFHIRImportJobCommand.d.ts +12 -1
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +12 -1
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +12 -1
  27. package/package.json +35 -35
@@ -95,4 +95,15 @@ declare const CreateFHIRDatastoreCommand_base: {
95
95
  * @public
96
96
  */
97
97
  export declare class CreateFHIRDatastoreCommand extends CreateFHIRDatastoreCommand_base {
98
+ /** @internal type navigation helper, not in runtime. */
99
+ protected static __types: {
100
+ api: {
101
+ input: CreateFHIRDatastoreRequest;
102
+ output: CreateFHIRDatastoreResponse;
103
+ };
104
+ sdk: {
105
+ input: CreateFHIRDatastoreCommandInput;
106
+ output: CreateFHIRDatastoreCommandOutput;
107
+ };
108
+ };
98
109
  }
@@ -78,4 +78,15 @@ declare const DeleteFHIRDatastoreCommand_base: {
78
78
  * @public
79
79
  */
80
80
  export declare class DeleteFHIRDatastoreCommand extends DeleteFHIRDatastoreCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: DeleteFHIRDatastoreRequest;
85
+ output: DeleteFHIRDatastoreResponse;
86
+ };
87
+ sdk: {
88
+ input: DeleteFHIRDatastoreCommandInput;
89
+ output: DeleteFHIRDatastoreCommandOutput;
90
+ };
91
+ };
81
92
  }
@@ -97,4 +97,15 @@ declare const DescribeFHIRDatastoreCommand_base: {
97
97
  * @public
98
98
  */
99
99
  export declare class DescribeFHIRDatastoreCommand extends DescribeFHIRDatastoreCommand_base {
100
+ /** @internal type navigation helper, not in runtime. */
101
+ protected static __types: {
102
+ api: {
103
+ input: DescribeFHIRDatastoreRequest;
104
+ output: DescribeFHIRDatastoreResponse;
105
+ };
106
+ sdk: {
107
+ input: DescribeFHIRDatastoreCommandInput;
108
+ output: DescribeFHIRDatastoreCommandOutput;
109
+ };
110
+ };
100
111
  }
@@ -85,4 +85,15 @@ declare const DescribeFHIRExportJobCommand_base: {
85
85
  * @public
86
86
  */
87
87
  export declare class DescribeFHIRExportJobCommand extends DescribeFHIRExportJobCommand_base {
88
+ /** @internal type navigation helper, not in runtime. */
89
+ protected static __types: {
90
+ api: {
91
+ input: DescribeFHIRExportJobRequest;
92
+ output: DescribeFHIRExportJobResponse;
93
+ };
94
+ sdk: {
95
+ input: DescribeFHIRExportJobCommandInput;
96
+ output: DescribeFHIRExportJobCommandOutput;
97
+ };
98
+ };
88
99
  }
@@ -98,4 +98,15 @@ declare const DescribeFHIRImportJobCommand_base: {
98
98
  * @public
99
99
  */
100
100
  export declare class DescribeFHIRImportJobCommand extends DescribeFHIRImportJobCommand_base {
101
+ /** @internal type navigation helper, not in runtime. */
102
+ protected static __types: {
103
+ api: {
104
+ input: DescribeFHIRImportJobRequest;
105
+ output: DescribeFHIRImportJobResponse;
106
+ };
107
+ sdk: {
108
+ input: DescribeFHIRImportJobCommandInput;
109
+ output: DescribeFHIRImportJobCommandOutput;
110
+ };
111
+ };
101
112
  }
@@ -103,4 +103,15 @@ declare const ListFHIRDatastoresCommand_base: {
103
103
  * @public
104
104
  */
105
105
  export declare class ListFHIRDatastoresCommand extends ListFHIRDatastoresCommand_base {
106
+ /** @internal type navigation helper, not in runtime. */
107
+ protected static __types: {
108
+ api: {
109
+ input: ListFHIRDatastoresRequest;
110
+ output: ListFHIRDatastoresResponse;
111
+ };
112
+ sdk: {
113
+ input: ListFHIRDatastoresCommandInput;
114
+ output: ListFHIRDatastoresCommandOutput;
115
+ };
116
+ };
106
117
  }
@@ -98,4 +98,15 @@ declare const ListFHIRExportJobsCommand_base: {
98
98
  * @public
99
99
  */
100
100
  export declare class ListFHIRExportJobsCommand extends ListFHIRExportJobsCommand_base {
101
+ /** @internal type navigation helper, not in runtime. */
102
+ protected static __types: {
103
+ api: {
104
+ input: ListFHIRExportJobsRequest;
105
+ output: ListFHIRExportJobsResponse;
106
+ };
107
+ sdk: {
108
+ input: ListFHIRExportJobsCommandInput;
109
+ output: ListFHIRExportJobsCommandOutput;
110
+ };
111
+ };
101
112
  }
@@ -111,4 +111,15 @@ declare const ListFHIRImportJobsCommand_base: {
111
111
  * @public
112
112
  */
113
113
  export declare class ListFHIRImportJobsCommand extends ListFHIRImportJobsCommand_base {
114
+ /** @internal type navigation helper, not in runtime. */
115
+ protected static __types: {
116
+ api: {
117
+ input: ListFHIRImportJobsRequest;
118
+ output: ListFHIRImportJobsResponse;
119
+ };
120
+ sdk: {
121
+ input: ListFHIRImportJobsCommandInput;
122
+ output: ListFHIRImportJobsCommandOutput;
123
+ };
124
+ };
114
125
  }
@@ -70,4 +70,15 @@ declare const ListTagsForResourceCommand_base: {
70
70
  * @public
71
71
  */
72
72
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
73
+ /** @internal type navigation helper, not in runtime. */
74
+ protected static __types: {
75
+ api: {
76
+ input: ListTagsForResourceRequest;
77
+ output: ListTagsForResourceResponse;
78
+ };
79
+ sdk: {
80
+ input: ListTagsForResourceCommandInput;
81
+ output: ListTagsForResourceCommandOutput;
82
+ };
83
+ };
73
84
  }
@@ -83,4 +83,15 @@ declare const StartFHIRExportJobCommand_base: {
83
83
  * @public
84
84
  */
85
85
  export declare class StartFHIRExportJobCommand extends StartFHIRExportJobCommand_base {
86
+ /** @internal type navigation helper, not in runtime. */
87
+ protected static __types: {
88
+ api: {
89
+ input: StartFHIRExportJobRequest;
90
+ output: StartFHIRExportJobResponse;
91
+ };
92
+ sdk: {
93
+ input: StartFHIRExportJobCommandInput;
94
+ output: StartFHIRExportJobCommandOutput;
95
+ };
96
+ };
86
97
  }
@@ -86,4 +86,15 @@ declare const StartFHIRImportJobCommand_base: {
86
86
  * @public
87
87
  */
88
88
  export declare class StartFHIRImportJobCommand extends StartFHIRImportJobCommand_base {
89
+ /** @internal type navigation helper, not in runtime. */
90
+ protected static __types: {
91
+ api: {
92
+ input: StartFHIRImportJobRequest;
93
+ output: StartFHIRImportJobResponse;
94
+ };
95
+ sdk: {
96
+ input: StartFHIRImportJobCommandInput;
97
+ output: StartFHIRImportJobCommandOutput;
98
+ };
99
+ };
89
100
  }
@@ -69,4 +69,15 @@ declare const TagResourceCommand_base: {
69
69
  * @public
70
70
  */
71
71
  export declare class TagResourceCommand extends TagResourceCommand_base {
72
+ /** @internal type navigation helper, not in runtime. */
73
+ protected static __types: {
74
+ api: {
75
+ input: TagResourceRequest;
76
+ output: {};
77
+ };
78
+ sdk: {
79
+ input: TagResourceCommandInput;
80
+ output: TagResourceCommandOutput;
81
+ };
82
+ };
72
83
  }
@@ -66,4 +66,15 @@ declare const UntagResourceCommand_base: {
66
66
  * @public
67
67
  */
68
68
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: UntagResourceRequest;
73
+ output: {};
74
+ };
75
+ sdk: {
76
+ input: UntagResourceCommandInput;
77
+ output: UntagResourceCommandOutput;
78
+ };
79
+ };
69
80
  }
@@ -37,4 +37,15 @@ declare const CreateFHIRDatastoreCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class CreateFHIRDatastoreCommand extends CreateFHIRDatastoreCommand_base {}
40
+ export declare class CreateFHIRDatastoreCommand extends CreateFHIRDatastoreCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateFHIRDatastoreRequest;
44
+ output: CreateFHIRDatastoreResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateFHIRDatastoreCommandInput;
48
+ output: CreateFHIRDatastoreCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const DeleteFHIRDatastoreCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DeleteFHIRDatastoreCommand extends DeleteFHIRDatastoreCommand_base {}
40
+ export declare class DeleteFHIRDatastoreCommand extends DeleteFHIRDatastoreCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteFHIRDatastoreRequest;
44
+ output: DeleteFHIRDatastoreResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteFHIRDatastoreCommandInput;
48
+ output: DeleteFHIRDatastoreCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const DescribeFHIRDatastoreCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DescribeFHIRDatastoreCommand extends DescribeFHIRDatastoreCommand_base {}
40
+ export declare class DescribeFHIRDatastoreCommand extends DescribeFHIRDatastoreCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeFHIRDatastoreRequest;
44
+ output: DescribeFHIRDatastoreResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeFHIRDatastoreCommandInput;
48
+ output: DescribeFHIRDatastoreCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const DescribeFHIRExportJobCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DescribeFHIRExportJobCommand extends DescribeFHIRExportJobCommand_base {}
40
+ export declare class DescribeFHIRExportJobCommand extends DescribeFHIRExportJobCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeFHIRExportJobRequest;
44
+ output: DescribeFHIRExportJobResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeFHIRExportJobCommandInput;
48
+ output: DescribeFHIRExportJobCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const DescribeFHIRImportJobCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DescribeFHIRImportJobCommand extends DescribeFHIRImportJobCommand_base {}
40
+ export declare class DescribeFHIRImportJobCommand extends DescribeFHIRImportJobCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeFHIRImportJobRequest;
44
+ output: DescribeFHIRImportJobResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeFHIRImportJobCommandInput;
48
+ output: DescribeFHIRImportJobCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const ListFHIRDatastoresCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ListFHIRDatastoresCommand extends ListFHIRDatastoresCommand_base {}
40
+ export declare class ListFHIRDatastoresCommand extends ListFHIRDatastoresCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListFHIRDatastoresRequest;
44
+ output: ListFHIRDatastoresResponse;
45
+ };
46
+ sdk: {
47
+ input: ListFHIRDatastoresCommandInput;
48
+ output: ListFHIRDatastoresCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const ListFHIRExportJobsCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ListFHIRExportJobsCommand extends ListFHIRExportJobsCommand_base {}
40
+ export declare class ListFHIRExportJobsCommand extends ListFHIRExportJobsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListFHIRExportJobsRequest;
44
+ output: ListFHIRExportJobsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListFHIRExportJobsCommandInput;
48
+ output: ListFHIRExportJobsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const ListFHIRImportJobsCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ListFHIRImportJobsCommand extends ListFHIRImportJobsCommand_base {}
40
+ export declare class ListFHIRImportJobsCommand extends ListFHIRImportJobsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListFHIRImportJobsRequest;
44
+ output: ListFHIRImportJobsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListFHIRImportJobsCommandInput;
48
+ output: ListFHIRImportJobsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const ListTagsForResourceCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const StartFHIRExportJobCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class StartFHIRExportJobCommand extends StartFHIRExportJobCommand_base {}
40
+ export declare class StartFHIRExportJobCommand extends StartFHIRExportJobCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartFHIRExportJobRequest;
44
+ output: StartFHIRExportJobResponse;
45
+ };
46
+ sdk: {
47
+ input: StartFHIRExportJobCommandInput;
48
+ output: StartFHIRExportJobCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const StartFHIRImportJobCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class StartFHIRImportJobCommand extends StartFHIRImportJobCommand_base {}
40
+ export declare class StartFHIRImportJobCommand extends StartFHIRImportJobCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartFHIRImportJobRequest;
44
+ output: StartFHIRImportJobResponse;
45
+ };
46
+ sdk: {
47
+ input: StartFHIRImportJobCommandInput;
48
+ output: StartFHIRImportJobCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -33,4 +33,15 @@ declare const TagResourceCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class TagResourceCommand extends TagResourceCommand_base {}
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const UntagResourceCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class UntagResourceCommand extends UntagResourceCommand_base {}
39
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UntagResourceRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UntagResourceCommandInput;
47
+ output: UntagResourceCommandOutput;
48
+ };
49
+ };
50
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-healthlake",
3
3
  "description": "AWS SDK for JavaScript Healthlake Client for Node.js, Browser and React Native",
4
- "version": "3.650.0",
4
+ "version": "3.654.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-healthlake",
@@ -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.650.0",
24
- "@aws-sdk/client-sts": "3.650.0",
25
- "@aws-sdk/core": "3.649.0",
26
- "@aws-sdk/credential-provider-node": "3.650.0",
27
- "@aws-sdk/middleware-host-header": "3.649.0",
28
- "@aws-sdk/middleware-logger": "3.649.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.649.0",
30
- "@aws-sdk/middleware-user-agent": "3.649.0",
31
- "@aws-sdk/region-config-resolver": "3.649.0",
32
- "@aws-sdk/types": "3.649.0",
33
- "@aws-sdk/util-endpoints": "3.649.0",
34
- "@aws-sdk/util-user-agent-browser": "3.649.0",
35
- "@aws-sdk/util-user-agent-node": "3.649.0",
36
- "@smithy/config-resolver": "^3.0.6",
37
- "@smithy/core": "^2.4.1",
38
- "@smithy/fetch-http-handler": "^3.2.5",
39
- "@smithy/hash-node": "^3.0.4",
40
- "@smithy/invalid-dependency": "^3.0.4",
41
- "@smithy/middleware-content-length": "^3.0.6",
42
- "@smithy/middleware-endpoint": "^3.1.1",
43
- "@smithy/middleware-retry": "^3.0.16",
44
- "@smithy/middleware-serde": "^3.0.4",
45
- "@smithy/middleware-stack": "^3.0.4",
46
- "@smithy/node-config-provider": "^3.1.5",
47
- "@smithy/node-http-handler": "^3.2.0",
48
- "@smithy/protocol-http": "^4.1.1",
49
- "@smithy/smithy-client": "^3.3.0",
50
- "@smithy/types": "^3.4.0",
51
- "@smithy/url-parser": "^3.0.4",
23
+ "@aws-sdk/client-sso-oidc": "3.654.0",
24
+ "@aws-sdk/client-sts": "3.654.0",
25
+ "@aws-sdk/core": "3.654.0",
26
+ "@aws-sdk/credential-provider-node": "3.654.0",
27
+ "@aws-sdk/middleware-host-header": "3.654.0",
28
+ "@aws-sdk/middleware-logger": "3.654.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.654.0",
30
+ "@aws-sdk/middleware-user-agent": "3.654.0",
31
+ "@aws-sdk/region-config-resolver": "3.654.0",
32
+ "@aws-sdk/types": "3.654.0",
33
+ "@aws-sdk/util-endpoints": "3.654.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.654.0",
35
+ "@aws-sdk/util-user-agent-node": "3.654.0",
36
+ "@smithy/config-resolver": "^3.0.8",
37
+ "@smithy/core": "^2.4.3",
38
+ "@smithy/fetch-http-handler": "^3.2.7",
39
+ "@smithy/hash-node": "^3.0.6",
40
+ "@smithy/invalid-dependency": "^3.0.6",
41
+ "@smithy/middleware-content-length": "^3.0.8",
42
+ "@smithy/middleware-endpoint": "^3.1.3",
43
+ "@smithy/middleware-retry": "^3.0.18",
44
+ "@smithy/middleware-serde": "^3.0.6",
45
+ "@smithy/middleware-stack": "^3.0.6",
46
+ "@smithy/node-config-provider": "^3.1.7",
47
+ "@smithy/node-http-handler": "^3.2.2",
48
+ "@smithy/protocol-http": "^4.1.3",
49
+ "@smithy/smithy-client": "^3.3.2",
50
+ "@smithy/types": "^3.4.2",
51
+ "@smithy/url-parser": "^3.0.6",
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.16",
56
- "@smithy/util-defaults-mode-node": "^3.0.16",
57
- "@smithy/util-endpoints": "^2.1.0",
58
- "@smithy/util-middleware": "^3.0.4",
59
- "@smithy/util-retry": "^3.0.4",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.18",
56
+ "@smithy/util-defaults-mode-node": "^3.0.18",
57
+ "@smithy/util-endpoints": "^2.1.2",
58
+ "@smithy/util-middleware": "^3.0.6",
59
+ "@smithy/util-retry": "^3.0.6",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2",
62
62
  "uuid": "^9.0.1"