@aws-sdk/endpoint-cache 3.292.0 → 3.303.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.
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @internal
3
+ */
1
4
  export interface Endpoint {
2
5
  /**
3
6
  * <p>An endpoint address.</p>
@@ -1,7 +1,13 @@
1
1
  import { Endpoint } from "./Endpoint";
2
+ /**
3
+ * @internal
4
+ */
2
5
  export interface EndpointWithExpiry extends Pick<Endpoint, "Address"> {
3
6
  Expires: number;
4
7
  }
8
+ /**
9
+ * @internal
10
+ */
5
11
  export declare class EndpointCache {
6
12
  private readonly cache;
7
13
  constructor(capacity: number);
@@ -1,2 +1,8 @@
1
+ /**
2
+ * @internal
3
+ */
1
4
  export * from "./Endpoint";
5
+ /**
6
+ * @internal
7
+ */
2
8
  export * from "./EndpointCache";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/endpoint-cache",
3
- "version": "3.292.0",
3
+ "version": "3.303.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",
@@ -21,7 +21,7 @@
21
21
  "types": "./dist-types/index.d.ts",
22
22
  "dependencies": {
23
23
  "mnemonist": "0.38.3",
24
- "tslib": "^2.3.1"
24
+ "tslib": "^2.5.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@tsconfig/recommended": "1.0.1",
@@ -30,7 +30,7 @@
30
30
  "downlevel-dts": "0.10.1",
31
31
  "rimraf": "3.0.2",
32
32
  "typedoc": "0.23.23",
33
- "typescript": "~4.6.2"
33
+ "typescript": "~4.9.5"
34
34
  },
35
35
  "engines": {
36
36
  "node": ">=14.0.0"