@aws-lite/route53-types 0.0.1 → 0.0.3
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/index.d.ts +2 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
ChangeResourceRecordSetsCommandOutput as ChangeResourceRecordSetsResponse,
|
|
5
5
|
ListResourceRecordSetsCommandOutput as ListResourceRecordSetsResponse,
|
|
6
6
|
// $IMPORTS_END
|
|
7
|
-
} from "@aws-sdk/client-
|
|
7
|
+
} from "@aws-sdk/client-route-53";
|
|
8
8
|
|
|
9
9
|
declare interface AwsLiteRoute53 {
|
|
10
10
|
/* ! Do not remove METHODS_START / METHODS_END ! */
|
|
@@ -20,7 +20,7 @@ declare interface AwsLiteRoute53 {
|
|
|
20
20
|
* - AWS docs: {@link https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListResourceRecordSets.html Route 53: ListResourceRecordSets}
|
|
21
21
|
* - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/route53/readme.md#ListResourceRecordSets Route 53: ListResourceRecordSets}
|
|
22
22
|
*/
|
|
23
|
-
ListResourceRecordSets: (input: { HostedZoneId: string, MaxItems?: number, StartRecordIdentifier?: string, StartRecordName?: string, StartRecordType?: string, paginate?: boolean }) => Promise<ListResourceRecordSetsResponse>
|
|
23
|
+
ListResourceRecordSets: (input: { HostedZoneId: string, MaxItems?: number, StartRecordIdentifier?: string, StartRecordName?: string, StartRecordType?: string, paginate?: boolean | string }) => Promise<ListResourceRecordSetsResponse>
|
|
24
24
|
// $METHODS_END
|
|
25
25
|
}
|
|
26
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-lite/route53-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Type definitions for the `@aws-lite/route53` plugin",
|
|
5
5
|
"homepage": "https://aws-lite.org/services/route53",
|
|
6
6
|
"repository": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"index.d.ts"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@aws-sdk/client-
|
|
23
|
+
"@aws-sdk/client-route-53": "3"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {}
|
|
26
26
|
}
|