@aws-sdk/middleware-bucket-endpoint 3.972.24 → 3.972.26
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/dist-cjs/index.js +21 -26
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -1,26 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.validateNoDualstack = s3.validateNoDualstack;
|
|
23
|
-
exports.validateNoFIPS = s3.validateNoFIPS;
|
|
24
|
-
exports.validateOutpostService = s3.validateOutpostService;
|
|
25
|
-
exports.validatePartition = s3.validatePartition;
|
|
26
|
-
exports.validateRegion = s3.validateRegion;
|
|
1
|
+
const { NODE_DISABLE_MULTIREGION_ACCESS_POINT_CONFIG_OPTIONS, NODE_DISABLE_MULTIREGION_ACCESS_POINT_ENV_NAME, NODE_DISABLE_MULTIREGION_ACCESS_POINT_INI_NAME, NODE_USE_ARN_REGION_CONFIG_OPTIONS, NODE_USE_ARN_REGION_ENV_NAME, NODE_USE_ARN_REGION_INI_NAME, bucketEndpointMiddleware, bucketEndpointMiddlewareOptions, bucketHostname, getArnResources, getBucketEndpointPlugin, getSuffixForArnEndpoint, resolveBucketEndpointConfig, validateAccountId, validateDNSHostLabel, validateNoDualstack, validateNoFIPS, validateOutpostService, validatePartition, validateRegion } = require("@aws-sdk/middleware-sdk-s3/s3");
|
|
2
|
+
exports.NODE_DISABLE_MULTIREGION_ACCESS_POINT_CONFIG_OPTIONS = NODE_DISABLE_MULTIREGION_ACCESS_POINT_CONFIG_OPTIONS;
|
|
3
|
+
exports.NODE_DISABLE_MULTIREGION_ACCESS_POINT_ENV_NAME = NODE_DISABLE_MULTIREGION_ACCESS_POINT_ENV_NAME;
|
|
4
|
+
exports.NODE_DISABLE_MULTIREGION_ACCESS_POINT_INI_NAME = NODE_DISABLE_MULTIREGION_ACCESS_POINT_INI_NAME;
|
|
5
|
+
exports.NODE_USE_ARN_REGION_CONFIG_OPTIONS = NODE_USE_ARN_REGION_CONFIG_OPTIONS;
|
|
6
|
+
exports.NODE_USE_ARN_REGION_ENV_NAME = NODE_USE_ARN_REGION_ENV_NAME;
|
|
7
|
+
exports.NODE_USE_ARN_REGION_INI_NAME = NODE_USE_ARN_REGION_INI_NAME;
|
|
8
|
+
exports.bucketEndpointMiddleware = bucketEndpointMiddleware;
|
|
9
|
+
exports.bucketEndpointMiddlewareOptions = bucketEndpointMiddlewareOptions;
|
|
10
|
+
exports.bucketHostname = bucketHostname;
|
|
11
|
+
exports.getArnResources = getArnResources;
|
|
12
|
+
exports.getBucketEndpointPlugin = getBucketEndpointPlugin;
|
|
13
|
+
exports.getSuffixForArnEndpoint = getSuffixForArnEndpoint;
|
|
14
|
+
exports.resolveBucketEndpointConfig = resolveBucketEndpointConfig;
|
|
15
|
+
exports.validateAccountId = validateAccountId;
|
|
16
|
+
exports.validateDNSHostLabel = validateDNSHostLabel;
|
|
17
|
+
exports.validateNoDualstack = validateNoDualstack;
|
|
18
|
+
exports.validateNoFIPS = validateNoFIPS;
|
|
19
|
+
exports.validateOutpostService = validateOutpostService;
|
|
20
|
+
exports.validatePartition = validatePartition;
|
|
21
|
+
exports.validateRegion = validateRegion;
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-bucket-endpoint",
|
|
3
|
-
"version": "3.972.
|
|
3
|
+
"version": "3.972.26",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
6
6
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
7
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
7
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
8
8
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
9
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
9
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
10
|
+
"clean": "premove dist-cjs dist-es dist-types"
|
|
11
11
|
},
|
|
12
12
|
"main": "./dist-cjs/index.js",
|
|
13
13
|
"module": "./dist-es/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
22
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.53",
|
|
23
23
|
"tslib": "^2.6.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|