@aws-sdk/middleware-sdk-route53 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-sdk-route53
|
|
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-sdk-route53
|
|
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-sdk-route53
|
|
@@ -1,16 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
import {
|
|
2
|
+
InitializeHandlerOptions,
|
|
3
|
+
InitializeMiddleware,
|
|
4
|
+
Pluggable,
|
|
5
|
+
} from "@aws-sdk/types";
|
|
6
|
+
export interface Change {
|
|
7
|
+
ResourceRecordSet: {
|
|
8
|
+
AliasTarget?: {
|
|
9
|
+
HostedZoneId: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export interface ChangeBatchBearer {
|
|
14
|
+
ChangeBatch: {
|
|
15
|
+
Changes: Iterable<Change>;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
export declare function changeResourceRecordSetsMiddleware(): InitializeMiddleware<
|
|
19
|
+
any,
|
|
20
|
+
any
|
|
21
|
+
>;
|
|
22
|
+
export declare const changeResourceRecordSetsMiddlewareOptions: InitializeHandlerOptions;
|
|
23
|
+
export declare const getChangeResourceRecordSetsPlugin: (
|
|
24
|
+
unused: any
|
|
25
|
+
) => Pluggable<any, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const IDENTIFIER_PREFIX_PATTERN: RegExp;
|
|
1
|
+
export declare const IDENTIFIER_PREFIX_PATTERN: RegExp;
|
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import {
|
|
2
|
+
InitializeHandlerOptions,
|
|
3
|
+
InitializeMiddleware,
|
|
4
|
+
Pluggable,
|
|
5
|
+
} from "@aws-sdk/types";
|
|
6
|
+
export interface IdentifierBearer {
|
|
7
|
+
DelegationSetId?: string;
|
|
8
|
+
HostedZoneId?: string;
|
|
9
|
+
Id?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function idNormalizerMiddleware(): InitializeMiddleware<
|
|
12
|
+
any,
|
|
13
|
+
any
|
|
14
|
+
>;
|
|
15
|
+
export declare const idNormalizerMiddlewareOptions: InitializeHandlerOptions;
|
|
16
|
+
export declare const getIdNormalizerPlugin: (
|
|
17
|
+
unused: any
|
|
18
|
+
) => Pluggable<any, any>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./change-resource-record-sets";
|
|
2
|
-
export * from "./id-normalizer";
|
|
1
|
+
export * from "./change-resource-record-sets";
|
|
2
|
+
export * from "./id-normalizer";
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-sdk-route53",
|
|
3
|
-
"version": "3.
|
|
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.
|
|
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.
|
|
48
|
+
"downlevel-dts": "0.10.1",
|
|
48
49
|
"rimraf": "3.0.2",
|
|
49
50
|
"typedoc": "0.19.2",
|
|
50
51
|
"typescript": "~4.6.2"
|