@aws-sdk/middleware-location-constraint 3.162.0 → 3.170.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,22 @@
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/middleware-location-constraint
9
+
10
+
11
+
12
+
13
+
14
+ # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/middleware-location-constraint
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.162.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.161.0...v3.162.0) (2022-08-31)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/middleware-location-constraint
@@ -1,12 +1,12 @@
1
- import { Provider } from "@aws-sdk/types";
2
- export interface LocationConstraintInputConfig {
3
- }
4
- interface PreviouslyResolved {
5
- region: Provider<string>;
6
- }
7
- export interface LocationConstraintResolvedConfig {
8
-
9
- region: Provider<string>;
10
- }
11
- export declare function resolveLocationConstraintConfig<T>(input: T & LocationConstraintInputConfig & PreviouslyResolved): T & LocationConstraintResolvedConfig;
12
- export {};
1
+ import { Provider } from "@aws-sdk/types";
2
+ export interface LocationConstraintInputConfig {}
3
+ interface PreviouslyResolved {
4
+ region: Provider<string>;
5
+ }
6
+ export interface LocationConstraintResolvedConfig {
7
+ region: Provider<string>;
8
+ }
9
+ export declare function resolveLocationConstraintConfig<T>(
10
+ input: T & LocationConstraintInputConfig & PreviouslyResolved
11
+ ): T & LocationConstraintResolvedConfig;
12
+ export {};
@@ -1,6 +1,14 @@
1
- import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@aws-sdk/types";
2
- import { LocationConstraintResolvedConfig } from "./configuration";
3
-
4
- export declare function locationConstraintMiddleware(options: LocationConstraintResolvedConfig): InitializeMiddleware<any, any>;
5
- export declare const locationConstraintMiddlewareOptions: InitializeHandlerOptions;
6
- export declare const getLocationConstraintPlugin: (config: LocationConstraintResolvedConfig) => Pluggable<any, any>;
1
+ import {
2
+ InitializeHandlerOptions,
3
+ InitializeMiddleware,
4
+ Pluggable,
5
+ } from "@aws-sdk/types";
6
+ import { LocationConstraintResolvedConfig } from "./configuration";
7
+
8
+ export declare function locationConstraintMiddleware(
9
+ options: LocationConstraintResolvedConfig
10
+ ): InitializeMiddleware<any, any>;
11
+ export declare const locationConstraintMiddlewareOptions: InitializeHandlerOptions;
12
+ export declare const getLocationConstraintPlugin: (
13
+ config: LocationConstraintResolvedConfig
14
+ ) => Pluggable<any, any>;
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-location-constraint",
3
- "version": "3.162.0",
3
+ "version": "3.170.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",
7
7
  "build:es": "tsc -p tsconfig.es.json",
8
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
8
9
  "build:types": "tsc -p tsconfig.types.json",
9
10
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
10
11
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
@@ -19,7 +20,7 @@
19
20
  },
20
21
  "license": "Apache-2.0",
21
22
  "dependencies": {
22
- "@aws-sdk/types": "3.162.0",
23
+ "@aws-sdk/types": "3.170.0",
23
24
  "tslib": "^2.3.1"
24
25
  },
25
26
  "engines": {
@@ -44,7 +45,7 @@
44
45
  "devDependencies": {
45
46
  "@tsconfig/recommended": "1.0.1",
46
47
  "concurrently": "7.0.0",
47
- "downlevel-dts": "0.7.0",
48
+ "downlevel-dts": "0.10.1",
48
49
  "rimraf": "3.0.2",
49
50
  "typedoc": "0.19.2",
50
51
  "typescript": "~4.6.2"