@aws-sdk/util-endpoints 3.535.0 → 3.567.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/dist-cjs/index.js +2 -0
- package/dist-es/aws.js +1 -1
- package/dist-types/aws.d.ts +2 -1
- package/dist-types/ts3.4/aws.d.ts +2 -1
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -41,6 +41,7 @@ __export(src_exports, {
|
|
|
41
41
|
RuleSetObject: () => import_util_endpoints.RuleSetObject,
|
|
42
42
|
RuleSetRules: () => import_util_endpoints.RuleSetRules,
|
|
43
43
|
TreeRuleObject: () => import_util_endpoints.TreeRuleObject,
|
|
44
|
+
awsEndpointFunctions: () => awsEndpointFunctions,
|
|
44
45
|
getUserAgentPrefix: () => getUserAgentPrefix,
|
|
45
46
|
isIpAddress: () => import_util_endpoints.isIpAddress,
|
|
46
47
|
partition: () => partition,
|
|
@@ -393,6 +394,7 @@ import_util_endpoints.customEndpointFunctions.aws = awsEndpointFunctions;
|
|
|
393
394
|
// Annotate the CommonJS export names for ESM import in node:
|
|
394
395
|
|
|
395
396
|
0 && (module.exports = {
|
|
397
|
+
awsEndpointFunctions,
|
|
396
398
|
partition,
|
|
397
399
|
setPartitionInfo,
|
|
398
400
|
useDefaultPartitionInfo,
|
package/dist-es/aws.js
CHANGED
|
@@ -2,7 +2,7 @@ import { customEndpointFunctions } from "@smithy/util-endpoints";
|
|
|
2
2
|
import { isVirtualHostableS3Bucket } from "./lib/aws/isVirtualHostableS3Bucket";
|
|
3
3
|
import { parseArn } from "./lib/aws/parseArn";
|
|
4
4
|
import { partition } from "./lib/aws/partition";
|
|
5
|
-
const awsEndpointFunctions = {
|
|
5
|
+
export const awsEndpointFunctions = {
|
|
6
6
|
isVirtualHostableS3Bucket: isVirtualHostableS3Bucket,
|
|
7
7
|
parseArn: parseArn,
|
|
8
8
|
partition: partition,
|
package/dist-types/aws.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { EndpointFunctions } from "@smithy/util-endpoints";
|
|
2
|
+
export declare const awsEndpointFunctions: EndpointFunctions;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { EndpointFunctions } from "@smithy/util-endpoints";
|
|
2
|
+
export declare const awsEndpointFunctions: EndpointFunctions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/util-endpoints",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.567.0",
|
|
4
4
|
"description": "Utilities to help with endpoint resolution",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
},
|
|
23
23
|
"license": "Apache-2.0",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@aws-sdk/types": "3.
|
|
25
|
+
"@aws-sdk/types": "3.567.0",
|
|
26
26
|
"@smithy/types": "^2.12.0",
|
|
27
27
|
"@smithy/util-endpoints": "^1.2.0",
|
|
28
28
|
"tslib": "^2.6.2"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
31
|
+
"node": ">=16.0.0"
|
|
32
32
|
},
|
|
33
33
|
"typesVersions": {
|
|
34
34
|
"<4.0": {
|