@aws-sdk/client-s3-control 3.462.0 → 3.468.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.
@@ -225,7 +225,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
225
225
  */
226
226
  streamHasher?: __StreamHasher<Readable> | __StreamHasher<Blob>;
227
227
  /**
228
- * A constructor for a class implementing the {@link __checksum} interface
228
+ * A constructor for a class implementing the {@link __Checksum} interface
229
229
  * that computes MD5 hashes.
230
230
  * @internal
231
231
  */
@@ -1,6 +1,5 @@
1
1
  /// <reference types="node" />
2
2
  import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
3
- import { HashConstructor as __HashConstructor } from "@smithy/types";
4
3
  import { S3ControlClientConfig } from "./S3ControlClient";
5
4
  /**
6
5
  * @internal
@@ -12,14 +11,14 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
12
11
  credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
13
12
  defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
14
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
15
- md5: __HashConstructor;
14
+ md5: import("@smithy/types").HashConstructor;
16
15
  region: string | import("@smithy/types").Provider<string>;
17
16
  requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
18
17
  updateHttpClientConfig(key: never, value: never): void;
19
18
  httpHandlerConfigs(): {};
20
19
  }) | RequestHandler;
21
20
  retryMode: string | import("@smithy/types").Provider<string>;
22
- sha256: __HashConstructor;
21
+ sha256: import("@smithy/types").HashConstructor;
23
22
  streamCollector: import("@smithy/types").StreamCollector;
24
23
  streamHasher: import("@smithy/types").StreamHasher<import("stream").Readable> | import("@smithy/types").StreamHasher<Blob>;
25
24
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -1,5 +1,4 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
- import { HashConstructor as __HashConstructor } from "@smithy/types";
3
2
  import { S3ControlClientConfig } from "./S3ControlClient";
4
3
  export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
5
4
  runtime: string;
@@ -14,7 +13,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
14
13
  import("@smithy/types").UserAgent
15
14
  >;
16
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
17
- md5: __HashConstructor;
16
+ md5: import("@smithy/types").HashConstructor;
18
17
  region: string | import("@smithy/types").Provider<string>;
19
18
  requestHandler:
20
19
  | (import("@smithy/types").RequestHandler<
@@ -32,7 +31,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
32
31
  })
33
32
  | RequestHandler;
34
33
  retryMode: string | import("@smithy/types").Provider<string>;
35
- sha256: __HashConstructor;
34
+ sha256: import("@smithy/types").HashConstructor;
36
35
  streamCollector: import("@smithy/types").StreamCollector;
37
36
  streamHasher:
38
37
  | import("@smithy/types").StreamHasher<import("stream").Readable>
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3-control",
3
3
  "description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
4
- "version": "3.462.0",
4
+ "version": "3.468.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
8
- "build:docs": "typedoc",
9
8
  "build:es": "tsc -p tsconfig.es.json",
10
9
  "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
11
10
  "build:types": "tsc -p tsconfig.types.json",
@@ -23,47 +22,47 @@
23
22
  "dependencies": {
24
23
  "@aws-crypto/sha256-browser": "3.0.0",
25
24
  "@aws-crypto/sha256-js": "3.0.0",
26
- "@aws-sdk/client-sts": "3.462.0",
27
- "@aws-sdk/core": "3.451.0",
28
- "@aws-sdk/credential-provider-node": "3.460.0",
29
- "@aws-sdk/middleware-host-header": "3.460.0",
30
- "@aws-sdk/middleware-logger": "3.460.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.460.0",
32
- "@aws-sdk/middleware-sdk-s3-control": "3.460.0",
33
- "@aws-sdk/middleware-signing": "3.461.0",
34
- "@aws-sdk/middleware-user-agent": "3.460.0",
35
- "@aws-sdk/region-config-resolver": "3.451.0",
36
- "@aws-sdk/types": "3.460.0",
37
- "@aws-sdk/util-endpoints": "3.460.0",
38
- "@aws-sdk/util-user-agent-browser": "3.460.0",
39
- "@aws-sdk/util-user-agent-node": "3.460.0",
40
- "@aws-sdk/xml-builder": "3.310.0",
41
- "@smithy/config-resolver": "^2.0.18",
42
- "@smithy/fetch-http-handler": "^2.2.6",
43
- "@smithy/hash-blob-browser": "^2.0.14",
44
- "@smithy/hash-node": "^2.0.15",
45
- "@smithy/hash-stream-node": "^2.0.15",
46
- "@smithy/invalid-dependency": "^2.0.13",
47
- "@smithy/md5-js": "^2.0.15",
48
- "@smithy/middleware-apply-body-checksum": "^2.0.15",
49
- "@smithy/middleware-content-length": "^2.0.15",
50
- "@smithy/middleware-endpoint": "^2.2.0",
51
- "@smithy/middleware-retry": "^2.0.20",
52
- "@smithy/middleware-serde": "^2.0.13",
53
- "@smithy/middleware-stack": "^2.0.7",
54
- "@smithy/node-config-provider": "^2.1.5",
55
- "@smithy/node-http-handler": "^2.1.9",
56
- "@smithy/protocol-http": "^3.0.9",
57
- "@smithy/smithy-client": "^2.1.15",
58
- "@smithy/types": "^2.5.0",
59
- "@smithy/url-parser": "^2.0.13",
25
+ "@aws-sdk/client-sts": "3.468.0",
26
+ "@aws-sdk/core": "3.468.0",
27
+ "@aws-sdk/credential-provider-node": "3.468.0",
28
+ "@aws-sdk/middleware-host-header": "3.468.0",
29
+ "@aws-sdk/middleware-logger": "3.468.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.468.0",
31
+ "@aws-sdk/middleware-sdk-s3-control": "3.468.0",
32
+ "@aws-sdk/middleware-signing": "3.468.0",
33
+ "@aws-sdk/middleware-user-agent": "3.468.0",
34
+ "@aws-sdk/region-config-resolver": "3.468.0",
35
+ "@aws-sdk/types": "3.468.0",
36
+ "@aws-sdk/util-endpoints": "3.468.0",
37
+ "@aws-sdk/util-user-agent-browser": "3.468.0",
38
+ "@aws-sdk/util-user-agent-node": "3.468.0",
39
+ "@aws-sdk/xml-builder": "3.465.0",
40
+ "@smithy/config-resolver": "^2.0.20",
41
+ "@smithy/fetch-http-handler": "^2.3.1",
42
+ "@smithy/hash-blob-browser": "^2.0.16",
43
+ "@smithy/hash-node": "^2.0.17",
44
+ "@smithy/hash-stream-node": "^2.0.17",
45
+ "@smithy/invalid-dependency": "^2.0.15",
46
+ "@smithy/md5-js": "^2.0.17",
47
+ "@smithy/middleware-apply-body-checksum": "^2.0.17",
48
+ "@smithy/middleware-content-length": "^2.0.17",
49
+ "@smithy/middleware-endpoint": "^2.2.2",
50
+ "@smithy/middleware-retry": "^2.0.23",
51
+ "@smithy/middleware-serde": "^2.0.15",
52
+ "@smithy/middleware-stack": "^2.0.9",
53
+ "@smithy/node-config-provider": "^2.1.7",
54
+ "@smithy/node-http-handler": "^2.2.1",
55
+ "@smithy/protocol-http": "^3.0.11",
56
+ "@smithy/smithy-client": "^2.1.18",
57
+ "@smithy/types": "^2.7.0",
58
+ "@smithy/url-parser": "^2.0.15",
60
59
  "@smithy/util-base64": "^2.0.1",
61
- "@smithy/util-body-length-browser": "^2.0.0",
60
+ "@smithy/util-body-length-browser": "^2.0.1",
62
61
  "@smithy/util-body-length-node": "^2.1.0",
63
- "@smithy/util-defaults-mode-browser": "^2.0.19",
64
- "@smithy/util-defaults-mode-node": "^2.0.25",
65
- "@smithy/util-endpoints": "^1.0.4",
66
- "@smithy/util-retry": "^2.0.6",
62
+ "@smithy/util-defaults-mode-browser": "^2.0.22",
63
+ "@smithy/util-defaults-mode-node": "^2.0.28",
64
+ "@smithy/util-endpoints": "^1.0.6",
65
+ "@smithy/util-retry": "^2.0.8",
67
66
  "@smithy/util-utf8": "^2.0.2",
68
67
  "fast-xml-parser": "4.2.5",
69
68
  "tslib": "^2.5.0",
@@ -78,7 +77,6 @@
78
77
  "concurrently": "7.0.0",
79
78
  "downlevel-dts": "0.10.1",
80
79
  "rimraf": "3.0.2",
81
- "typedoc": "0.23.23",
82
80
  "typescript": "~4.9.5"
83
81
  },
84
82
  "engines": {