@aws-sdk/middleware-bucket-endpoint 3.188.0 → 3.190.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.190.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.189.0...v3.190.0) (2022-10-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **endpoint:** endpoints 2.0 all-service TS compilation fixes ([#4043](https://github.com/aws/aws-sdk-js-v3/issues/4043)) ([f2da618](https://github.com/aws/aws-sdk-js-v3/commit/f2da6182298d4d6b02e84fb723492c07c27469a8))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/middleware-bucket-endpoint
|
|
@@ -32,7 +32,7 @@ export interface BucketEndpointInputConfig {
|
|
|
32
32
|
disableMultiregionAccessPoints?: boolean | Provider<boolean>;
|
|
33
33
|
}
|
|
34
34
|
interface PreviouslyResolved {
|
|
35
|
-
isCustomEndpoint
|
|
35
|
+
isCustomEndpoint?: boolean;
|
|
36
36
|
region: Provider<string>;
|
|
37
37
|
regionInfoProvider: RegionInfoProvider;
|
|
38
38
|
useFipsEndpoint: Provider<boolean>;
|
|
@@ -43,7 +43,7 @@ export interface BucketEndpointResolvedConfig {
|
|
|
43
43
|
* Whether the endpoint is specified by caller.
|
|
44
44
|
* @internal
|
|
45
45
|
*/
|
|
46
|
-
isCustomEndpoint
|
|
46
|
+
isCustomEndpoint?: boolean;
|
|
47
47
|
/**
|
|
48
48
|
* Resolved value for input config {@link BucketEndpointInputConfig.bucketEndpoint}
|
|
49
49
|
*/
|
|
@@ -7,14 +7,14 @@ export interface BucketEndpointInputConfig {
|
|
|
7
7
|
disableMultiregionAccessPoints?: boolean | Provider<boolean>;
|
|
8
8
|
}
|
|
9
9
|
interface PreviouslyResolved {
|
|
10
|
-
isCustomEndpoint
|
|
10
|
+
isCustomEndpoint?: boolean;
|
|
11
11
|
region: Provider<string>;
|
|
12
12
|
regionInfoProvider: RegionInfoProvider;
|
|
13
13
|
useFipsEndpoint: Provider<boolean>;
|
|
14
14
|
useDualstackEndpoint: Provider<boolean>;
|
|
15
15
|
}
|
|
16
16
|
export interface BucketEndpointResolvedConfig {
|
|
17
|
-
isCustomEndpoint
|
|
17
|
+
isCustomEndpoint?: boolean;
|
|
18
18
|
bucketEndpoint: boolean;
|
|
19
19
|
forcePathStyle: boolean;
|
|
20
20
|
useAccelerateEndpoint: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-bucket-endpoint",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.190.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@aws-sdk/protocol-http": "3.
|
|
24
|
-
"@aws-sdk/types": "3.
|
|
23
|
+
"@aws-sdk/protocol-http": "3.190.0",
|
|
24
|
+
"@aws-sdk/types": "3.190.0",
|
|
25
25
|
"@aws-sdk/util-arn-parser": "3.188.0",
|
|
26
26
|
"@aws-sdk/util-config-provider": "3.188.0",
|
|
27
27
|
"tslib": "^2.3.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@aws-sdk/middleware-stack": "3.
|
|
31
|
-
"@aws-sdk/node-config-provider": "3.
|
|
30
|
+
"@aws-sdk/middleware-stack": "3.190.0",
|
|
31
|
+
"@aws-sdk/node-config-provider": "3.190.0",
|
|
32
32
|
"@tsconfig/recommended": "1.0.1",
|
|
33
33
|
"concurrently": "7.0.0",
|
|
34
34
|
"downlevel-dts": "0.10.1",
|