@aws-sdk/util-endpoints 3.535.0 → 3.540.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 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,
@@ -1 +1,2 @@
1
- export {};
1
+ import { EndpointFunctions } from "@smithy/util-endpoints";
2
+ export declare const awsEndpointFunctions: EndpointFunctions;
@@ -1 +1,2 @@
1
- export {};
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.535.0",
3
+ "version": "3.540.0",
4
4
  "description": "Utilities to help with endpoint resolution",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",