Skip to content

Commit 7ed7101

Browse files
authoredMay 16, 2023
feat(deps): use @smithy types and protocol-http (#4722)
1 parent fb5df75 commit 7ed7101

File tree

15,148 files changed

+32340
-32100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

15,148 files changed

+32340
-32100
lines changed
 

‎clients/client-accessanalyzer/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
"@aws-sdk/middleware-user-agent": "*",
4040
"@aws-sdk/node-config-provider": "*",
4141
"@aws-sdk/node-http-handler": "*",
42-
"@aws-sdk/protocol-http": "*",
4342
"@aws-sdk/smithy-client": "*",
4443
"@aws-sdk/types": "*",
4544
"@aws-sdk/url-parser": "*",
@@ -53,6 +52,8 @@
5352
"@aws-sdk/util-user-agent-browser": "*",
5453
"@aws-sdk/util-user-agent-node": "*",
5554
"@aws-sdk/util-utf8": "*",
55+
"@smithy/protocol-http": "^1.0.1",
56+
"@smithy/types": "^1.0.0",
5657
"tslib": "^2.5.0",
5758
"uuid": "^8.3.2"
5859
},

‎clients/client-accessanalyzer/src/AccessAnalyzerClient.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import {
2323
UserAgentInputConfig,
2424
UserAgentResolvedConfig,
2525
} from "@aws-sdk/middleware-user-agent";
26-
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
2726
import {
2827
Client as __Client,
2928
DefaultsMode as __DefaultsMode,
@@ -35,19 +34,22 @@ import {
3534
Checksum as __Checksum,
3635
ChecksumConstructor as __ChecksumConstructor,
3736
Credentials as __Credentials,
38-
Decoder as __Decoder,
39-
Encoder as __Encoder,
4037
EndpointV2 as __EndpointV2,
4138
Hash as __Hash,
4239
HashConstructor as __HashConstructor,
4340
HttpHandlerOptions as __HttpHandlerOptions,
4441
Logger as __Logger,
45-
Provider as __Provider,
4642
Provider,
47-
StreamCollector as __StreamCollector,
4843
UrlParser as __UrlParser,
4944
UserAgent as __UserAgent,
5045
} from "@aws-sdk/types";
46+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
47+
import {
48+
Decoder as __Decoder,
49+
Encoder as __Encoder,
50+
Provider as __Provider,
51+
StreamCollector as __StreamCollector,
52+
} from "@smithy/types";
5153

5254
import { ApplyArchiveRuleCommandInput, ApplyArchiveRuleCommandOutput } from "./commands/ApplyArchiveRuleCommand";
5355
import {

0 commit comments

Comments
 (0)
Please sign in to comment.