@aws-sdk/util-endpoints 3.170.0 → 3.171.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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+
9
+ ### Features
10
+
11
+ * **endpoint:** util-endpoints and middleware-endpoint for endpoints 2.0 ([#3932](https://github.com/aws/aws-sdk-js-v3/issues/3932)) ([e81b7d0](https://github.com/aws/aws-sdk-js-v3/commit/e81b7d0920a74843a2a34857f41b0d6d93abc465))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
18
 
8
19
 
package/README.md CHANGED
@@ -2,3 +2,5 @@
2
2
 
3
3
  [![NPM version](https://img.shields.io/npm/v/@aws-sdk/util-endpoints/latest.svg)](https://www.npmjs.com/package/@aws-sdk/util-endpoints)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/util-endpoints.svg)](https://www.npmjs.com/package/@aws-sdk/util-endpoints)
5
+
6
+ > An internal package
@@ -1,3 +1,2 @@
1
1
  import { EndpointARN } from "@aws-sdk/types";
2
-
3
2
  export declare const parseArn: (value: string) => EndpointARN | null;
@@ -1,3 +1,2 @@
1
1
  import { EndpointPartition } from "@aws-sdk/types";
2
-
3
2
  export declare const partition: (value: string) => EndpointPartition;
@@ -5,7 +5,6 @@ export declare type GetAttrValue =
5
5
  [key: string]: GetAttrValue;
6
6
  }
7
7
  | Array<GetAttrValue>;
8
-
9
8
  export declare const getAttr: (
10
9
  value: GetAttrValue,
11
10
  path: string
@@ -1,3 +1,2 @@
1
1
  import { EndpointURL } from "@aws-sdk/types";
2
-
3
2
  export declare const parseURL: (value: string) => EndpointURL | null;
@@ -1,6 +1,5 @@
1
1
  import { EndpointV2 } from "@aws-sdk/types";
2
2
  import { EndpointResolverOptions, RuleSetObject } from "./types";
3
-
4
3
  export declare const resolveEndpoint: (
5
4
  ruleSetObject: RuleSetObject,
6
5
  options: EndpointResolverOptions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-endpoints",
3
- "version": "3.170.0",
3
+ "version": "3.171.0",
4
4
  "description": "Utilities to help with endpoint resolution",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "@aws-sdk/types": "3.170.0",
24
+ "@aws-sdk/types": "3.171.0",
25
25
  "tslib": "^2.3.1"
26
26
  },
27
27
  "engines": {